$(document).ready(function(){
	$(".catalog_module div.darkRow,.catalog_module div.lightRow").hover(
    	function(){
        	$(this).css('border','1px solid #f00');
    	},
    	function(){
        	$(this).css('border','1px solid #fff');
    	}
	).click(function(){
		self.location.href = $(this).find("div.more_info_link a").attr('href');
	});

	$(".catalog_module div.title").corner("round tr br 5px");

	h = $("#catalog_detail_header").attr('class');
	if(h)
		$("#header").css('background-image','url('+h+')');
});
