$(document).ready(function(){

	$('ul.news li').hover(function(){
		$(this).addClass('hovering');
		$(this).css({'cursor':'pointer'});
	},function(){
		$(this).removeClass('hovering');	
		$(this).css({'cursor':'default'});
	});

	$('ul.news li').click(function(){
			document.location = $(this).find('a:first').attr('href');
		});

	$('#showcase .car').hover(function(){		
		$(this).addClass('hovering');
		$(this).css({'cursor':'pointer'});
	},function(){
		$(this).removeClass('hovering');	
		$(this).css({'cursor':'default'});
	}).click(function(){
			document.location = $(this).find('a:first').attr('href');
		});
		
	$("a.popup").fancybox({'overlayShow': true});	
		
})