// author: Netbasics B.V. - www.netbasics.nl
$(document).ready(function() 
{	
	var animation = 1;
	
	$(".product_scroll").mouseover(function(){
   		if(animation == 1){
			$(".title_scroll").animate( {marginLeft:'-200px'}, {duration:6000,complete:callback}, 7000);
			// Animatie is bezig, mag dus niet nog een keer
			animation = 0;
		}
	});
	
	function callback()
	{
		// Animatie terug laten gaan
		$(".title_scroll").animate({marginLeft:'-0px'}, {duration:600,complete:stopAnimate},  1500);
		
	}
	
	function stopAnimate()
	{
		// Animatie mag weer
		animation = 1;
	}
	
	
	
		
});


