$(document).ready(function() {
	$(".content p a").append("&nbsp;&raquo;");
	$("#box_news p span").addClass("bold").append("&nbsp;&raquo;<br />");
    $("img[rel]").overlay({effect: 'apple'}); 

	
	$(".fade")
		.mouseover(function () {
			if (!$.browser.msie) $(this).animate({opacity: 1}, 250);
		})
		.mouseout(function() {
 			if (!$.browser.msie) $(this).animate({opacity: .6}, 500);
		});
	$(".product ul li:nth-child(even)").css("margin-left", "40px");	
});

