$(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");


    $("#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
                });
            });
        }        
        return false;
    });	


});