
/*  -- Item Page: Recently Viewed Items --  */

jQuery(document).ready(function(){
	var recentViewHt = jQuery("#recentlyViewedItems").height();
	jQuery("#recentlyViewedLink").html("recently viewed [<span>+</span>]");
	jQuery("#recentItems").hide();
	jQuery("#recentlyViewedLink").toggle(function(){
		jQuery(this).html("recently viewed [<span>-</span>]");
		jQuery("#recentItems").addClass("active");
		jQuery("#recentItems").css("height","0px");
		jQuery("#recentItems").show().animate({"top":recentViewHt+"px","height":recentViewHt+"px"}, "slow");
	}, function(){
		jQuery(this).html("recently viewed [<span>+</span>]");
		jQuery("#recentItems").removeClass("active");
		jQuery("#recentItems").animate({"top":"0px","height":"0px"}, "slow", function(){jQuery(this).hide();});
		jQuery("#recentItems").css("height",recentViewHt+"px");
	});
});

/*  -- End Item Page: Recently Viewed Items --  */

