var $j = jQuery.noConflict();

$j(document).ready(function() {
	
	/* Setup variables
	-----------------------------------------------------*/
	
	var name = "#staticCol";
    var menuYloc = null;
	var pathname = window.location.href;
	
    $j(document).ready(function(){
        menuYloc = parseInt($j("#staticCol").css("top").substring(0,$j("#staticCol").css("top").indexOf("px")));
        
		$j(window).scroll(function () {

            var offset = menuYloc+$j(document).scrollTop()+"px";
            $j("#staticCol").animate({top:offset},{duration:300,queue:false});
			
        });
		
		
		
		/* Set the container padding
		-----------------------------------------------------*/	
		$j("#container").css("padding-bottom", String(($j("#footer").height())+"px"));	
		
		
		/* Select current nav links
		-----------------------------------------------------*/	
		$j("a").each(function(index) {
			
			// Set the custom heights
			if ($j(this).attr("href") == pathname) {
				$j(this).addClass("selected");
			}
		});
		
    });
	
	
});
