// JavaScript Document
$(function(){
// HOVER MAINNAV
	$("#containerNav ul li a.mainNavItem").css({
		backgroundPosition: "0px 0px"
	}).mouseover(function(){
		$(this).stop().animate({backgroundPosition:"(0px -20px)"},{duration:500})
	}).mouseout(function(){
		$(this).stop().animate({backgroundPosition:"(0px 0px)"},{duration:500})
	});

// HOLD HOVER MAINNAV WHEN OVER SUBNAV
	$(".subNav").mouseover(function() {
		$(this).prev(".mainNavItem").stop().css({backgroundPosition:"0px -20px"});
	}).mouseout(function(){
		$(this).prev(".mainNavItem").stop().animate({backgroundPosition:"(0px 0px)"},{duration:500})
	});

// BOXEN HOME
	$(".mainBoxHome").mouseenter(function(){
		$(this).stop().animate({marginTop: "0px"},300);
		$(this).addClass("mainBoxHomeActive");
	}).mouseleave(function(){
		$(this).stop().animate({marginTop: "-100px"},300);
		$(this).removeClass("mainBoxHomeActive");
	});

// SEARCH FORM		
	$(".searchAreaField").focus(function(){
		if($(this).val() == "Zoeken"){
			$(this).val("");
		}
	}).blur(function(){
		if($(this).val() == ""){
			$(this).val("Zoeken");
		}
	});
	
// INSERT IMG before first P in contentRightColumn
	$(".contentRightColumn:first p:first").prepend("<img src=\"images/layout/imgColumnFirstParagraph.jpg\" alt=\"\" />");
})
