$(document).ready(function () {


	//rounded corners
    $("#header").corner("bottom");

    $("#menu ul li").corner("2px");
    $("#menu ul li.leftItem").corner("tl");
    $("#menu ul li.rightItem").corner("tr");

    $("#sidebar").corner();

    $("#content").corner("2px").corner("bottom");

	//superbox
	$.superbox();
	
	$.superbox.settings = {
	boxId: "superbox", // Id attribute of the "superbox" element
	boxClasses: "", // Class of the "superbox" element
	overlayOpacity: .8, // Background opaqueness
	boxWidth: "800", // Default width of the box
	boxHeight: "400", // Default height of the box
	loadTxt: "Loading...", // Loading text
	closeTxt: "Close", // "Close" button text
	prevTxt: "Preverious&nbsp;", // "Previous" button text
	nextTxt: "Next" // "Next" button text
	};

	
	$(".list li a").hover(function(){
		$("#sitePreview").attr("src", "img/info_previews/"+this.id+".png");
	}); 
	

	//sidebar-fix
	$("#sidebar").height($("#main").height());


	//menu
    $("#menu ul li").hover(function () { //enter item
        $(this).animate({
            marginTop: "-3px"
        },
        100);
    },

    function () { //leave item
        $(this).animate({
            marginTop: "0px"
        }
        ,
        100);
    });
    
    //menu2
    $("#content a").hover(function () { //enter item
        $( "#"+$(this).attr("name") ).animate({
            marginTop: "-3px"
        },
        100);
    },

    function () { //leave item
       $( "#"+$(this).attr("name") ).animate({
            marginTop: "0px"
        }
        ,
        100);
    });


});
