// JavaScript Document

function hide(id) {
		document.getElementById(id).style.display='none';
		
	}
	
function show(id) {
	document.getElementById(id).style.display='block';
}

function showInline(id) {
	document.getElementById(id).style.display='inline';
}


function mo(w,img) {
	w.src = 'http://www.bastilleseattle.com/img/' + img;
}

function randomImg(){
	p = 2 // change this to the number of images in the folder
	
	var nu = Math.round(Math.random()*(p-1));
	document.write('<img src="http://www.bastilleseattle.com/img/homepage/home' + nu + '.jpg">');

}

function map(){
	document.getElementById('map').innerHTML='<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=5305+Ballard+Avenue+NW+seattle,+wa&amp;sll=37.0625,-95.677068&amp;sspn=48.641855,114.169922&amp;ie=UTF8&amp;ll=47.675155,-122.379026&amp;spn=0.020227,0.036478&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe><br /><a href="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=5305+Ballard+Avenue+NW+seattle,+wa&amp;sll=37.0625,-95.677068&amp;sspn=48.641855,114.169922&amp;ie=UTF8&amp;ll=47.675155,-122.379026&amp;spn=0.020227,0.036478&amp;z=14&amp;iwloc=A">View Larger Map</a>'
	document.getElementById('map').style.marginBottom='20px';
	}
