// JavaScript Document

$(document).ready(function()
{
	// cycle the van
    $('#smartVanSlideShow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		next: '#rotateVan',
		timeout: 0,
		speed: 'fast'
	});
	
	// advantage & choice page transition
	$('#btnAdvRepair').click(function() {
		
		// menu advantage
		$('#menuAdv1').fadeOut('slow');
		$('#menuAdv2').fadeIn('slow');
		$('#btnAdvRepair').fadeOut('fast');
		$('#advCar').animate({"marginTop": "-=50px"}, "slow");
		
		// menu choice
		$('#menuChoice1').fadeOut('slow');
		$('#menuChoice2').fadeIn('slow');
	});
	
	// shows home popup
	$('#homePopupLink').click(function() {
		$('#smartPopup').fadeIn('slow');
		$('#smartPopupBG').fadeIn('slow');
		$('#smartPopupBG').animate({opacity:0.5},1000);
	});
	
		// this initialises the demo scollpanes on the page.
		$('.pane1').jScrollPane({scrollbarWidth:10, scrollbarMargin:70});
});