$().ready(function() {
	
	$("#basket a.item").hover(function()
	{
		$(this).find("div").css("background-color","#555");
		$(this).find("div p").css("color","#ffa");
	},
	function()
	{
		$(this).find("div").css("background-color","transparent");
		$(this).find("div p").css("color","#222");

	});
	
	$("#dvd_order_modal").jqm({trigger:false});
	$("#plaque_order_modal").jqm({trigger:false});
	$("a.dvd_order").click(function(){$("#dvd_order_modal").jqmShow(); return false;});
	$("a.plaque_order").click(function(){$("#plaque_order_modal").jqmShow(); return false});
});

