<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<title>MSB Live Entertainment</title>
<link rel="stylesheet" type="text/css" media="all"  href="css/libraries.css" />
<link rel="stylesheet" type="text/css" media="all"  href="css/template.css" />
<link rel="stylesheet" type="text/css" media="all" href="css/header_nav.css" />
<link rel="stylesheet" type="text/css" media="all" href="css/grids.css" />
<link rel="stylesheet" type="text/css" media="all" href="css/content.css" />
<link rel="stylesheet" type="text/css" media="all" href="css/mod.css" />
</head>
<style type="text/css">

#dropmenudiv{
position:absolute;
border:1px solid black;
border-bottom-width: 1;
font:normal 12px Verdana;
line-height:18px;
z-index:100;
}

#dropmenudiv a{
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid white;
padding: 1px 0;
text-decoration: none;
font-weight: bold;
color: #ffffff;
}

#dropmenudiv a:hover{ /*hover background color*/
background-color: #C1C1C1;
color: #0D15B9;
}

</style>

<script type="text/javascript">

/***********************************************
* AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

//Contents for menu 1
var menu1=new Array()
menu1[0]='<a href="menu.php"><font size="-2">Menu</font></a>'
menu1[1]='<a href="kids.php"><font size="-2">Kids Menu</font></a>'
menu1[2]='<a href="wood_oven.php"><font size="-2">Our Wood Burning Oven</font></a>'
menu1[3]='<a href="history.php"><font size="-2"></font><font size="-2">History</a>'

//Contents for menu 2, and so on
var menu2=new Array()
menu2[0]='<a href="apres_ski.php"> <font size="-2">Legendary Apres Ski</font></a>'
menu2[1]='<a href="movie.php"><font size="-2">Matterhorn Experience<font size="-2"></a>'
menu2[2]='<a href="promos.php"><font size="-2">Promos And Give-Aways!<font size="-2"></a>'

//Contents for menu 2, and so on
var menu3=new Array()
menu3[0]='<a href="mug_club.php"><font size="-2">Join or Renew Mug-Club</font></a>'
menu3[1]='<a href="photo.php"><font size="-2">Photo Contest</font></a>'



var menuwidth='600px' //default menu width
var menubgcolor='ffffff'  //menu bgcolor
var disappeardelay=250  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?

/////No further editting needed

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top="-500px"
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
}
}
return edgeoffset
}

function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}

return clickreturnvalue()
}

function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu

</script>


<SCRIPT LANGUAGE="JavaScript">
<!-- Hide Script
//-----------------------------

if (document.images)
{
   Bimage0_normal        = new Image();
   Bimage0_normal.src    = "images/links_C1_R1.jpg";
   Bimage0_over          = new Image();
   Bimage0_over.src      = "images/links_C1_R1_1.jpg";
   Bimage1_normal        = new Image();
   Bimage1_normal.src    = "images/links_C2_R1.jpg";
   Bimage1_over          = new Image();
   Bimage1_over.src      = "images/links_C2_R1_1.jpg";
   Bimage2_normal        = new Image();
   Bimage2_normal.src    = "images/links_C3_R1.jpg";
   Bimage2_over          = new Image();
   Bimage2_over.src      = "images/links_C3_R1_1.jpg";
   Bimage3_normal        = new Image();
   Bimage3_normal.src    = "images/links_C4_R1.jpg";
   Bimage3_over          = new Image();
   Bimage3_over.src      = "images/links_C4_R1_1.jpg";
   Bimage4_normal        = new Image();
   Bimage4_normal.src    = "images/links_C5_R1.jpg";
   Bimage4_over          = new Image();
   Bimage4_over.src      = "images/links_C5_R1_1.jpg";
}

function switchimages(sName,nEvent) {
if (document.images)
 {
  if (nEvent == 0) sVal = 'normal';
  else if (nEvent == 1) sVal = 'over';
  else if (nEvent == 2) sVal = 'click';
  else return;
  sObj = eval(sName + '_' + sVal + ".src");
  if (document.images[sName])
  document.images[sName].src = sObj;
 }
}
// End of JavaScript -->
</SCRIPT>

<SCRIPT TYPE="text/javascript">
<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=586,height=900,scrollbars=yes');
return false;
}
//-->
    </SCRIPT>

<body bgcolor="#f3f3f3">	

<!--header-->

<?php include("header.html");?>

<!--header-->


<table align="center" bgcolor="#FFFFFF">
<tr>
	<td><table border="0" cellpadding="0" cellspacing="0" width="457" align=left">

 <tr>
 <td valign="top" align="left" width="78" height="35"><a href="index.mtml" onMouseOver=" switchimages('Bimage0',1); return true" onMouseOut=" switchimages('Bimage0',0); return true"><img name="Bimage0" src="images/links_C1_R1.jpg" width="78" height="35" border="0" alt="Matterhorn Ski Bar"></a></td>
 <td valign="top" align="left" width="90" height="35"><a onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu1, '150px')" onMouseout="delayhidemenu()"><img name="Bimage1" src="images/links_C2_R1.jpg" width="90" height="35" border="0" alt="Dining at the Matterhorn Ski Bar"></a></td>
 <td valign="top" align="left" width="79" height="35"><a onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu2, '150px')" onMouseout="delayhidemenu()"><img name="Bimage2" src="images/links_C3_R1.jpg" width="79" height="35" border="0" alt="Legendary Apres Ski at the Matterhorn"></a></td>
 <td valign="top" align="left" width="112" height="35"><a onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu3, '150px')" onMouseout="delayhidemenu()"><img name="Bimage3" src="images/links_C4_R1.jpg" width="112" height="35" border="0" alt="Join the Matterhorn Mug Club!"></a></td>
 <td valign="top" align="left" width="98" height="35"><a href="music.php" onMouseOver=" switchimages('Bimage4',1); return true" onMouseOut=" switchimages('Bimage4',0); return true"><img name="Bimage4" src="images/links_C5_R1.jpg" width="98" height="35" border="0" alt="Live Entertainment at the Matterhorn Ski Bar!"></a></td>
 </tr>
</table>

<table width="898" height="583" background="music bg.jpg" align="center">
<tr>
	<td><table>
<tr>
	<td width="42%"><br /><br /><br /><br /><br /><br /><a href="schedule.pdf" onClick="return popup(this, 'notes')"><img src="schedule.jpg" alt="2009-2010 Matterhorn Concert Poster" /></a><br /><br /><br /><br /><br />
<a href="http://matterhornskibar.com/play_msb.php" target="_blank">
<img src="schedule2.jpg" width="300" height="185" alt="" />
</a>
</td>
	<td><table cellpadding="5" width="400" align="right">
<tr>
	<td><br><br /><br /><br /><br /><br /><div style="width:530px;height:440px;overflow:auto;border-width:1px;border-color:EB9963;border-style:solid;scrollbar-base-color:BE730C;">
<table cellpadding="5">
<tr>
	<td>

<font size="+1"><font face="Verdana" color="#F4B660"> 2011 Concert Season</font></font><br><br />

<font size="+1"><font face="Verdana" color="#F4B660">January...</font></font><br>
<font face="Verdana"><font size="-1"><font color="#FFFFFF" face="Verdana">
<font color="#FFA74F">
FRIDAY NEW YEAR'S EVE:  Kilroe
</font>
</font></font>
<br />
<font face="Verdana"><font size="-1"><font color="#FFFFFF" face="Verdana">
Sat. 1/1: Kilroe
</font></font>
<br />
<font face="Verdana"><font size="-1"><font color="#FFFFFF" face="Verdana">
Sat. 1/8: Last Kid Picked
</font></font>
<br />
<font face="Verdana"><font size="-1"><font color="#FFFFFF" face="Verdana">
Sat 1/15:Conniption Fits
</font></font>
<br />
<font face="Verdana"><font size="-1"><font color="#FFFFFF" face="Verdana">
Sat. 1/22: Last Kid Picked
</font></font>
<br />
<font face="Verdana"><font size="-1"><font color="#FFFFFF" face="Verdana">
Sat. 1/29: Conniption Fits
</font></font>
<br /><br />

<font size="+1"><font face="Verdana" color="#F4B660">February...</font></font><br>
<font face="Verdana"><font size="-1"><font color="#FFFFFF" face="Verdana">
Sat. 2/5: <strong><a href="http://www.myspace.com/lastkidpickedband/" target="_blank">
<font color="#FDE18C">Last Kid Picked</font></a></strong>
<br />
<font face="Verdana"><font size="-1"><font color="#FFFFFF" face="Verdana">
Sat 2/12: Jimmy's Down
</font></font>
<br />

<font face="Verdana"><font size="-1"><font color="#FFFFFF" face="Verdana">
Sat. 2/19: Last Kid Picked
</font></font>
<br />
<font face="Verdana"><font size="-1"><font color="#FFFFFF" face="Verdana">
Sat 2/26: Jimmy's Down
</font></font>
<br /><br /><font size="+1"><font face="Verdana" color="#F4B660">March...</font></font><br>
<font face="Verdana"><font size="-1"><font color="#FFFFFF" face="Verdana">
Sat. 3/5: Last Kid Picked
</font></font>
<br />

<font face="Verdana"><font size="-1"><font color="#FFFFFF" face="Verdana">
Sat. 3/12: Kilroe
</font></font>
<br />

<font face="Verdana"><font size="-1"><font color="#FFFFFF" face="Verdana">
Sat. 3/19: Last Kid Picked
</font></font>
<br />

<font face="Verdana"><font size="-1"><font color="#FFFFFF" face="Verdana">
Sat. 3/26: Conniption Fits
</font></font>
<br /><br /><font size="+1"><font face="Verdana" color="#F4B660">April...</font></font><br>
<font face="Verdana"><font size="-1"><font color="#FFFFFF" face="Verdana">
Sat. 4/2: Last Kid Picked
</font></font>
<br />
<font face="Verdana"><font size="-1"><font color="#FFFFFF" face="Verdana">
Sat 4/9: Jimmy's Down
</font></font>

<br /><br />


</div> 








</td>
</tr>
</table></td>
</tr>
</table>
</td>
</tr>
</table>

</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0">
<tr>
	<td><img src="blue1.jpg" width="230" height="36" alt="" /></td>
	<td><img src="blue.jpg" alt="" width=670" height="36" border="0" align="left"></td>
</tr>
</table>


</body>
</html>

