function autoHeightAndWidth(obj,h,w){
	$(obj).each( function(){
    if($(this).height() > h && h > 0){
      $(this).height(h);
    }
    if($(this).width() > w && w > 0){
      $(this).width(w);
    }
  });
}
$(document).ready(function () {
$("#prods li:nth-child(3n)").addClass("remove");			
$("#content-nav ul li:nth-child(1)").addClass("main-page");			
$("#content-nav ul li:nth-child(2)").addClass("remove");
autoHeightAndWidth('#rotate img.menubox',131,131);

    $("#det-data-nav li a").click(function() {
        var curList = $("#det-data-nav li a.current").attr("rel");
        var curListHeight = $("#det-data-rotate").height();
        $("#det-data-rotate").height(curListHeight);
        $("#det-data-nav li a").removeClass("current");
        $(this).addClass("current");
        var listID = $(this).attr("rel");
        if (listID != curList) {
            $("#"+curList).fadeOut(200, function() {
                $("#"+listID).fadeIn();
                var newHeight = $("#"+listID).height();
                $("#det-data-rotate").animate({
                    height: newHeight
                });                 
                autoHeightAndWidth('#rotate img.menubox',131,131);
            });
        }        
        return false;
    });	


});
