
var pWidth=800; 
function randImage()
{
var wWidth=document.body.clientWidth;
var images = new Array("ban1.jpg","ban2.jpg","ban3.jpg","ban4.jpg","ban5.jpg","ban6.jpg","ban7.jpg","ban8.jpg","ban9.jpg","ban10.jpg","ban11.jpg","ban12.jpg","ban13.jpg","ban14.jpg");
var whichImage=0;
whichImage=Math.floor(Math.random()*images.length);
document.write('<img src="images/banner/'+images[whichImage]+'" id="banner" width="'+pWidth+'">');

}


function barMouseLeave(bId)
{
document.getElementById(bId).style.color='#000000';
}


function barMouseOver(bId)
{
document.getElementById(bId).style.color='#FFFFFF';
}


function barClick(bId)
{
  if(bId=='bHome')window.location="http://www.backyardproductions.org/";
  else if(bId=='bContact')window.location="http://www.backyardproductions.org/contact.php";
  else if(bId=='bPhotos')window.location="http://www.backyardproductions.org/portfolio.php";
  else if(bId=='bPrints')window.location="http://www.backyardproductions.org/prints.php";
  else if(bId=='bPricing')window.location="http://www.backyardproductions.org/pricing.php";

}