//CUSTOM SCRIPT FOR MATTS.biz
//Author: Brandammo

j(function(){
	
	/* animate clouds */
	j('#clouds_top').pan({fps: 30, speed: 0.25, dir: 'right'});
	j('#clouds_bottom').pan({fps: 30, speed:1, dir: 'right'});
	
	j(".content_van").bind('mouseover', cVanAccel);
	j(".content_van").bind('mouseout', cVanReverse);

	j(".hp_van").bind('mouseover', hpVanAccel);
	j(".hp_van").bind('mouseout', hpVanReverse);

});

/* ------------------------------------------------------ */
/* VAN */

function cVanAccel(){
	j(this).stop().animate({left: '-10px'},{duration:250, easing: 'linear'});
}

function cVanReverse(){
	j(this).stop().animate({left: '-20px'},{duration:250, easing: 'linear'});
}

function hpVanAccel(){
	j(this).stop().animate({left: '5px'},{duration:250, easing: 'linear'});
}

function hpVanReverse(){
	j(this).stop().animate({left: '-5px'},{duration:250, easing: 'linear'});
}


