var mainH
$(function(){
	$("#menu li:not(.selected) a").mouseover(function(){
		$(this).children(".brush").stop().animate(
			{width:"100%"}, 
			200, 'swing')
	})
	.mouseout(function(){
		$(this).children(".brush").stop().animate(
			{width:"0"}, 
			200, 'swing')
	})
	mainH = $("#main").height();
	// debug for youtube video
	$('object').each(function(index) {
		mainH += Number($(this).attr("height"));
	});
	$(window).bind('resize', function(){setHeight()});
	$('#agenda').innerfade({
		animationtype: 'fade',
		speed: 750,
		timeout: 4000,
		containerheight: '30px'
	});
	$('#banner ul').innerfade({
		animationtype: 'fade',
		speed: 1500,
		timeout: 10000,
		containerheight: '143px'
	});
	setHeight();
});
function setHeight(){
	var winH = $(window).height();
	//$("#output").html(mainH+"/"+winH);
	if(mainH > winH+190){
		$("#texture").height(mainH-190);
	}else{
		$("#texture").height(winH);
	}
}
