$(document).ready(function(){
	
	// The van is draggable
    $("#van").draggable({ revert: true });
	
	// The menu
	$("#menu ul li:not(.selected) a img").fadeTo(10, 0);
	
	$("#menu ul li:not(.selected) a img").hover(function(){
		$(this).stop().fadeTo(300, 1.0);
	},function(){
		$(this).stop().fadeTo(500, 0);
	});
	
	
	// Animate Brands on About Us Page
	$('ul#brands li').mouseover(function() {
        $(this).animate({ backgroundColor: "#000000" }, 'fast');
	});
	$('ul#brands li').mouseout(function() {
        $(this).animate({ backgroundColor: "#999999" }, 'fast');
	});
	
});
