$(document).ready(function(){
    
    jQuery('ul#globalNav').superfish();
    
    jQuery('ul#topNav').superfish();
    
    autoFill($("#searchfield"), "Search");
    autoFill($("#ipsearchfield"), "(For Example: 127.0.0.1)");
    
    function autoFill(id, v){
		$(id).css({ color: "#b2adad" }).attr({ value: v }).focus(function(){
	    	if($(this).val()==v){
	    		$(this).val("").css({ color: "#333" });
	    	}
	    }).blur(function(){
	    	if($(this).val()==""){
	    		$(this).css({ color: "#b2adad" }).val(v);
	    	}
	    });
	    
	}
    
    // Load external video list
    $('#playlist').load("videos.html?" + 1*new Date() );
});

// Reset heights for double background
    var htmlHeight = $('html').height();
    var innerHeight = $('#innerWrapper').height();
    var height = $('html').height();

    if (innerHeight <= htmlHeight){
        $('#wrapper').css('height', htmlHeight -1);
    }
    else {
        $('#wrapper').css('height', innerHeight -1);
    }
