$(document).ready(function() {
	
	// Main navigatie
	$('#main_nav ul li ul').hide();
	$('#main_nav ul').mouseover(function(){
			$(this).find('ul').show();
		});
	$('#main_nav ul').mouseout(function(){
			$(this).find('ul').hide();
		});

	// Set footer
	$('#footer').css('top', $(document).height()-$('#footer').height()-15 );
	
	// Referenties carousel
	if( $('#home-ref').length ){
		$('#home-ref').tinycarousel({
				interval: true,
				display: 2
			});
	}
	
	// Recensies carousel
	if( $('#home-rec').length ){
		$('#home-rec').tinycarousel({
				interval: true,
				display: 1,
				axis: 'y',
				intervaltime: 15000				
			});
		$('#home-rec .quote-start, #home-rec .quote-end').each(function(){
				height =  $(this).parent().find('.content').height();
				$(this).height(height+10);
			});
	}
	
	// Contact pagina e-mail adres
	if( $('.vcard .email').length ){
		$('.vcard .email').html('<a href="mailto:info@debieproductions.nl">info@debieproductions.nl</a>');
	}
	
	// Afbeeldingen lightbox
	$('.user-content a img.lightbox').parent().fancybox();
	$('.user-content a.lightbox').fancybox();
	
	// Info button
	$('span.info-button').mouseover(function(){
			$(this).find('div.info').show();
		});
	$('span.info-button').mouseout(function(){
			$(this).find('div.info').hide();
		});
	
	// Hoogte submenu
	if( $('#submenu').length ){
		$('#submenu').height( $('#submenu').parent().height() );
	}
	
	// Faq slider
	$('h2.question').click(function(){ $(this).next('div.answer').slideToggle(); });
	
});
