/*********************************************************/
/************* JAVASCRIPT FUNCTIONS ON LOAD **************/
/*********************************************************/

$(document).ready(function(){
	$("#button1").click(function(){	
		if ($("#hidden_top").is(":hidden")){
			$("#hidden_top").slideDown("slow");
		} else{
			$("#hidden_top").slideUp("slow");

		}
	});
	
	reSizeBorder();
});

function reSizeBorder(){
	var windowHeight = window.innerHeight ? window.innerHeight : document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight;
	if($("#left_side").height() > windowHeight){
		//alert($("#left_side").height());
		$("#right_bg").height($("#left_side").height());
	} else {
		//alert(windowHeight);
		$("#right_bg").height(windowHeight);	
	}
}