$(document).ready(function(){
	$(".rental-item a").hover(function(){
		$(this).children("img").show();
	}, function(){
		$(".hide").hide();
	});
	$('a[rel=external]').click(function(){
		window.open(jQuery(this).attr('href'));
		return false;
	});
	
	//change images
	$(".imagenav a").click(function(){
		$(".image-preview").attr({src: $(this).attr("rel")});
	});
	

});