jQuery(document).ready(function() {
  if($("#gallery-container ul li").length > 0){
    jQuery('#gallery-container').jcarousel();
   }
});

$(document).ready(function() {
	$("#query").focus(function() {
		if ($("#query").val() == "Typ hier uw zoekopdracht") {
			$("#query").val("");
			$("#query").css("color", "#000");
		}
	});
	
	$("#query").blur(function() {
		if ($("#query").val() == "") {
			$("#query").val("Typ hier uw zoekopdracht");
			$("#query").css("color", "#bbb");
		}
	})

})


/* Hover menu */

$(document).ready(function() {
	
	//hide subs
	$("#menu ul li ul").hide();
	
	
	//show subs on hover
	$("#menu ul li").hover(function() {
		$(this).children('ul').show();
		var left = $(this).position().left;
		
		$(this).children('ul li').css('left',left);
		
	}, function(){
		$(this).children('ul').hide();
	});
	
	
	//color main on hover
	$("#menu ul li ul li").hover(function() {
		$(this).parents('li').children('a').css({'color':'#ffffff'});
		$(this).parents('li').css({'background':'#5283b1'});
	}, function(){
		$(this).parents('li').children('a').css({'color':'#666666'});
		$(this).parents('li').css({'background':'#cccccc'});
	});
 
	
	
});