/*----------------------------------------------------------

* File Name: global.js

----------------------------------------------------------*/

$(document).ready(function(){
	
	//Create a hover function for the cars on the homepage.
	vehicle_hover = function(obj){
		$(obj).hover(function(){
			$(this).children("div.content").stop(true, true).slideToggle(500);
		});
	};
	//Initiate the car hover function.
	vehicle_hover("div.vehicles");
	
	//Create a function to fade the image in.
	display_image = function(image){
        $("<img>").load(function(){
            $(this).hide();
            $('div#page-image').append(this);
            $(this).fadeIn();
        }).attr('src', image);
	};
	
	//init random images.
	random_images = function(url, boo){
		var images = ["one.jpg", "two.jpg", "three.jpg", "four.jpg", "five.jpg"],
			i = Math.floor(Math.random() * images.length),
			image = (url + images[i]);
		if(boo === true){
			display_image(image);
		}
	};
});
