jQuery(document).ready(function(){

	jQuery(".product").hover(function(){
		jQuery(this).parent().parent().children('img').attr('src', "/Media/view/" + jQuery(this).attr('rel') + "/banner.jpg");
		jQuery("#slogan").removeAttr("class");
		jQuery("#slogan").addClass("sloganBg");
		jQuery("#slogan").addClass("slogan_"+ jQuery(this).attr('counter'));
		jQuery("#slogantext").html('"' +jQuery(this).attr('title')+ '"');
	});
	
	jQuery('#searchForm').click(function(){
		if(jQuery(this).val() == 'Typ hier uw zoekopdracht'){
			jQuery(this).val('');
		}
	});
	
	jQuery('#searchForm').blur(function() {
		if(jQuery (this).val() == ''){
			jQuery(this).val('Typ hier uw zoekopdracht');
		}
	
	});
	
	jQuery('#AndersAdvertentie').click(function(){
		if(jQuery(this).val() == 'Anders, nl'){
			jQuery(this).val('');
		}
	});
	
	jQuery('#AndersAdvertentie').blur(function() {
		if(jQuery (this).val() == ''){
			jQuery(this).val('Anders, nl');
		}
	
	});
	
	// Menu handler
	jQuery("#main ul li").hover(function(){
		jQuery(this).children('ul').slideToggle('slow');
		jQuery(this).children('ul').children().hover(function(){
			jQuery(this).parent().parent().parent().children('a').css('color', 'red');
		});
	});
	
	// lightbox handler
	
	jQuery(".closePopup").click(function(){
		jQuery(this).parent().parent().remove();
	});
	
	
	
});
