
function init() {

	var img01 = new Image();
	img01.src = "images/tooltip.png";
	var img02 = new Image();
	img02.src = "images/tooltip2.png";

	$('#carGallery img.car').live({
		mouseover: function () {
			var that = $(this).next('div');
			$(this).css('z-index', '1000');
			
			that.css({
				'display' : 'block',
				'z-index' : '999'
			});
		},
		
		mouseout: function () {
			var that = $(this).next('div');
			$(this).attr('style', '');
			that.attr('style', '');
			that.css('z-index', 0);
		},
		
		click: function () {
			window.location = 'http://www.chevydriveschicago.com/' + $(this).next('div.tooltip').children('a').attr('class');
		}
	});
}
