function menu_rollover(mnu){
 	var rolltop = document.getElementById('menutopline');
 	var rollbot = document.getElementById('menubotline');
 	var rolltxt = document.getElementById('menubotlinetext');
	rolltop.className = 'on';
	rollbot.className = 'on';
	rolltxt.className = 'on';
	switch (mnu){
		case 'home':
			rolltop.style.top = '38px';
			rolltop.style.height = '300px';
			rolltxt.innerHTML = '-We are the area\'s most dynamic, fun-loving, entertaining and friendliest wine and cheese shop around';
			break;
		case 'about':
			rolltop.style.top = '58px';
			rolltop.style.height = '280px';
			rolltxt.innerHTML = '-Our purpose is to explain what we offer, why we are different and more importantly, what we can do for you';
			break;
		case 'offer':
			rolltop.style.top = '78px';
			rolltop.style.height = '260px';
			rolltxt.innerHTML = '-We have a simple philosophy in our product selection: Offer products that go with wine, cheese, bread and brew';
			break;
		case 'new':
			rolltop.style.top = '98px';
			rolltop.style.height = '240px';
			rolltxt.innerHTML = '-New at The Vin Bin!';
			break;
		case 'matches':
			rolltop.style.top = '118px';
			rolltop.style.height = '220px';
			rolltxt.innerHTML = '-Great wine/food pairings!';
			break;
		case 'newsletter':
			rolltop.style.top = '138px';
			rolltop.style.height = '200px';
			rolltxt.innerHTML = '-Our Weekly E-Newsletter';
			break;
		case 'contact':
			rolltop.style.top = '158px';
			rolltop.style.height = '180px';
			rolltxt.innerHTML = '-How to reach us';
			break;
		case 'newwine':
			rolltop.style.top = '198px';
			rolltop.style.height = '140px';
			rolltxt.innerHTML = '-Vin Bin in the news!';
			break;
		case 'events':
			rolltop.style.top = '218px';
			rolltop.style.height = '120px';
			rolltxt.innerHTML = '-Calendar of events';
			break;
                case 'signup':
			rolltop.style.top = '238px';
			rolltop.style.height = '120px';
			rolltxt.innerHTML = '-Sign Up for Our Weekly E-News Specials';
			break;

		
	}
	rolltop.className = 'on';
	rollbot.className = 'on';
	rolltxt.className = 'on';
}
function menu_rollout(){
 	var rolltop = document.getElementById('menutopline');
 	var rollbot = document.getElementById('menubotline');
 	var rolltxt = document.getElementById('menubotlinetext');

	rolltop.className = 'off';
	rollbot.className = 'off';
	rolltxt.className = 'off';
	rolltxt.innerHTML = '';
}