// JavaScript Document

$(document).ready(function(){
	
	$('#rollover_left').mouseover(function(){
		$('#front_car').stop().animate({
			width:'687'
		},1000);
		$('#slider_bar').stop().animate({
			marginLeft:'667',
			opacity:'1'
		},1000).stop().stop().animate({
			marginLeft:'667',
			opacity:'0'
		},1000);
		$('#rollover_right').stop().animate({
			opacity:'0'
		},850);
		$('#rollover_left').stop().animate({
			opacity:'1'
		},850);
	});
	$('#rollover_right').mouseover(function(){
		$('#front_car').stop().animate({
			width:'0'
		},1000);
		$('#slider_bar').stop().animate({
			marginLeft:'0',
			opacity:'1'
		},1000).stop().stop().animate({
			marginLeft:'0',
			opacity:'0'
		},1000);
		$('#rollover_right').stop().animate({
			opacity:'1'
		},850);
		$('#rollover_left').stop().animate({
			opacity:'0'
		},850);
	});
	$('#rollover_left,#rollover_right').mouseout(function(){
		$('#front_car').stop().animate({
			width:'343'
		},1000);
		$('#slider_bar').stop().animate({
			marginLeft:'323',
			opacity:'1'
		},1000);
		$('#rollover_right,#rollover_left').stop().animate({
			opacity:'1'
		},850);
	});
	$('#rollover_left').click(function(){
		window.open('http://peugeot.groupebullman.be');
	});
	$('#rollover_right').click(function(){
		window.open('http://kia.groupebullman.be');
	});
});
