$(document).ready(function(){

	
	
	/* ---  ZOERKEN BOX FOCUS/BLUR FUNCTIONS ---  */ 
	$("#zoek").focus(function(){
	
		if ( $(this).val() == "zoeken" )
		{
			$(this).val('');
		}
	
	});
	
	
	$("#zoek").blur(function(){
	
		if ( $(this).val() == "" )
		{
			$(this).val('zoeken');
		}
	
	});
	/* --- ---  */ 
	
	
	
	/* ---  REL=EXTERNAL ---  */ 
	$("a").each(function(){
	
		if ( $(this).attr('rel') == 'external' )
		{
			$(this).attr('target', '_blank');
		}
	
	});
	/* --- ---  */ 
	
	$("#homeBoxesHor2 .left").mouseover(function(){
	
			$('#homeBoxesHor2 .left').animate({ width: '120px' }, 500 );
			$('#homeBoxesHor2 .right').animate({ width: '80px' }, 500 );
		
		
	});
	
	$("#homeBoxesHor2 .left").mouseout(function(){
	
		
			$('#homeBoxesHor2 .right').animate({ width: '100px' }, 500 );
			$('#homeBoxesHor2 .left').animate({ width: '100px' }, 500 );
		
	});
	
	$("#homeBoxesHor2 .right").mouseover(function(){

			$('#homeBoxesHor2 .left').animate({ width: '80px' }, 500 );
			$('#homeBoxesHor2 .right').animate({ width: '120px' }, 500 );
		
	});
	
	$("#homeBoxesHor2 .right").mouseout(function(){
	
			$('#homeBoxesHor2 .right').animate({ width: '100px' }, 500 );
			$('#homeBoxesHor2 .left').animate({ width: '100px' }, 500 );
		
	});	
	
	
	

});
