//
//
//**************************************************************
//
// INIT (OVERRIDE)
//
//**************************************************************

init = (function() {

	var proxied = init
	return function(){
		initPage();
		setSizePage();
		proxied()
		
		//setSize();
		}
})();
//
setSize = (function() {
	var proxied = setSize;
	return function(){
		proxied()
		setSizePage()
	}
})();


function initPage(){
	jQuery("#vertical").animate({opacity:.3},0)
	initPageButtons()
}



function setSizePage(){
	var myContent = jQuery("#home_strip")
	myContent.css("top",Math.max(50,(height-myContent.height())/2));
}
function initPageButtons(){
	var mySectionButtons = jQuery("#home_strip #content > div > a")
	mySectionButtons.hover(doSectionOver, doSectionOut)
}
function doSectionOver(){
	jQuery(this).css("border-bottom","9px solid white")
}
function doSectionOut(){
	jQuery(this).css("border-bottom","none")
}
