$(document).ready(function(){
	$("a.sidebarMenuLink").click(
		function () {
			
			var itemClass = $(this).attr('href').substr(1);
			if ($(this).hasClass('expand')) {
				$(this).addClass('collapse');
				$(this).removeClass('expand');
				$("." + itemClass).slideDown();
				$("." + itemClass).removeClass('hide');
				$("." + itemClass).addClass('show');
			} else {
				$(this).removeClass('collapse');
				$(this).addClass('expand');
				$("." + itemClass).slideUp();
				$("." + itemClass).addClass('hide');
				$("." + itemClass).removeClass('show');
			}
		}
	);
	$("#featured").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
	$("#featuredImages").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 6000, true);
	/*$(".list-product .image img").load(function() { 
		$(this).css ({ "position":"absolute", "width": $(this).width() + "px", "height": $(this).height() + "px", "top": 110 - $(this).height()  + "px", "left":"0px" }); 
	});
	*/
	
	$(".show-product .image img").load(function() { 
		if ($(this).height() < 314) {
			$(this).css ({"height" : "314px"});
		}
		$(this).css ({
		"position":"absolute",
		"width" : "504px",
		"top"   :  ((314 - $(this).height())/2)  + "px"
		});
		
	});
	
});

function go_to (target, href) { try { target.location = href; } catch (e) { } }
