// JavaScript Document
$(document).ready(function(){
	$('#car').animate({'margin-left': 450}, 4000);
	$('#dust').animate({width: 400}, 4000);
	$('.slideshowMain').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 5000,
		speed: 1000
	});
});

$(function(){
  $('#nav a')
	  .css( {backgroundPosition: "0 0"} )
	  .mouseover(function(){
		  $(this).stop().animate({backgroundPosition:"(0 -200px)"}, {duration:1000})
	  })
	  .mouseout(function(){
		  $(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:500})
	  })
});

var _gaq = _gaq || [];
	_gaq.push(['_setAccount', 'UA-15356428-1']);
	_gaq.push(['_trackPageview']);
  
	(function() {
	  var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
	  ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
	  var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
	})();
