$(function()
{
	$(".item .details").hide();
	
	//fixes select overlap problem in IE6. 
	//need to include jquery.bgiframe.js for it to work - url of documentation(http://brandonaaron.net/jquery/plugins/bgiframe/docs/)
	if ( $.fn.bgiframe ){
		$(".item .details").bgiframe();
	}
	
	$(".item").hover(function() {
		$(this).find(".details").show();
	}, function() {
		$(this).find(".details").hide();
	});
});

