$(document).ready(function() {
	
	// Expand Panel
	$("#open").focus(function(){
		$("div#panel").slideDown("slow");
	
	});	
	
	// Collapse Panel
	$("#open").blur(function() {

	});


});

function resize() {
    var htmlheight = document.body.parentNode.clientHeight;
    var windowheight = window.screen.height;
    var frame = document.getElementById("bg");
    /*if ( htmlheight < windowheight )
    { frame.style.height = windowheight + "px"; }
    */
    // frame.style.height = (windowheight-80) + "px";
    // alert(frame.style.height);
}