// JavaScript Document
$(function() {
 
	$('.zoomHover img').hover(function(e) {
		var href = $(this).attr('class');

		var html = '<div id="info">';
		//html +=    '<h4>Some Title Would Go Right Here</h4>';		
		//html +=	   '<img src="images/tire2_zoom.jpg" alt="image" />';
		html +=	   '<img src="' + href + '" alt="big image" />';
		//html +=	   '<p></p>';
		html +=		'</div>';
						
		$('body').append(html).children('#info').hide().fadeIn(400);
		$('#info').css('top', e.pageY + -220).css('left', e.pageX + 40);
			
	}, function() {
		$('#info').remove();
	});
	
	$('a').mousemove(function(e) {
		$('#info').css('top', e.pageY + -220).css('left', e.pageX + 40);
	});
});
