function monthlyOver () {
	var el; 
	el = document.getElementById("monthly-box");		
	el.style.display = "block";
	el = document.getElementById("monthly-specials-left");		
	el.style.backgroundImage="url(images/rip_top_left.gif)";
	el = document.getElementById("monthly-specials");		
	el.style.backgroundImage="url(images/monthly_specials_over.gif)";
	el = document.getElementById("monthly-specials-right");		
	el.style.backgroundImage="url(images/rip_top_right.gif)";
}

function monthlyOut () {
	var el;
	el = document.getElementById("monthly-box");		
	el.style.display = "none";
	el = document.getElementById("monthly-specials-left");		
	el.style.backgroundImage="url(images/monthly_specials_left.gif)";
	el = document.getElementById("monthly-specials");		
	el.style.backgroundImage="url(images/monthly_specials_up.gif)";
	el = document.getElementById("monthly-specials-right");		
	el.style.backgroundImage="url(images/monthly_specials_right.gif)";
}

var currheight;
window.onresize = function(){
	if(currheight != document.documentElement.clientHeight)
	{
		var el = document.getElementById("pushit");
		el.style.display = "none";
		el.style.display = "block";	
	}
	currheight = document.documentElement.clientHeight;
}

function month( selectedtype )
{
  document.eventsform.eventtype.value = selectedtype;
  document.eventsform.submit();  
}

