$(document).ready(function() { //Anders werkt het niet in Safari
    onload();
});

function onload() //Anders werkt het niet in FF
{
	$("#info_box").attr({title: "Klik om info te verbergen."})
	info_box();	
	 $("#main").oneTime(3000, function()
	 {			
	 	$('#info_box').animate({right: "-355px"}, 250, 'swing' );				
	 	$('#info_box').attr({title: "Klik voor meer info."})				
	 });
		
	$("#global_q").focus(function(e){e.target.value = ""});
	
}

function info_box()
{	
		
    $("#info_box").click(
		$("#info_box").toggle
		(
		
			function()
			{		
				$(this).animate({right: "0px"}, 250, 'swing' );				
				$(this).attr({title: "Klik om info te verbergen."})
			},	
			function()
			{			
				$(this).animate({right: "-355px"}, 250, 'swing' );				
				$(this).attr({title: "Klik voor meer info."})				
			}
		)
    );

    $("#info_box #big_arrow").hover(

		function()
		{	
			this.src = "/shops/intercodam.com/theme/big_arrow_out.png";			
		},
		function()
		{
			this.src = "/shops/intercodam.com/theme/big_arrow.png";			
		}	
	
    );

};
