$(document).ready(function() {
	
	if($('#images')){
		$('#images').cycle({ 
				fx:    'fade', 
				speed:  3000,
				timeout: 1000,
				delay:-2000
			 });
	}
	
	

	if($(".popup")){
		$(".popup").fancybox({
				'hideOnContentClick': true, 
				'overlayShow':	true,
				'overlayOpacity':0.5,
				'padding':30
		  });
	}
	$(".popup2").fancybox({
			'hideOnContentClick': true, 
			'overlayShow':	true,
			'overlayOpacity':0.8,
			'padding':0,
			'frameWidth':699,
			'frameHeight':1550,
			'centerOnScroll':false
	});
	
	$("#menu li").mouseover(function(){
	  	$(this).addClass("actief");
    }).mouseout(function(){
		
		if($(this).attr('actief')!='1') {
      		$(this).removeClass("actief");
		}
    });
	place_images();

	$("#keyword").keypress(function (e) {
		if (e.which == 13) {
		   window.location=$('#searchLocation').val()+$('#keyword').val();
		}
	});
	
	
});

Cufon.replace('h1');



function place_images() {
	$('#thumbs').css('margin-top','0px');
	
	if($('#productdetail')) {
		var rechtshoogte = $('#productdetail').height();	
		var linkshoogte = $('#productgroot-container').height();	
		
		if(rechtshoogte<linkshoogte) {
			$('#thumbs').css('margin-top',linkshoogte-rechtshoogte+'px');
				
		}
	}	
}






