$(document).ready(function(){
	bgImageTotal=3;
	randomNumber = Math.round(Math.random()*(bgImageTotal-1))+1;
	imgPath=('images/mast/mast_'+randomNumber+'.jpg');
	$('#header').css('background-image', ('url("'+imgPath+'")'));
	
	// Drop down navigation menu (apartment list)
	$('.parent').hover(
		function() { $('div', this).css('display', 'block'); },
		function() { $('div', this).css('display', 'none'); 
	});

});

function popUp(URL) {
window.open(URL, '', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=900,height=600,left=220,top=100');
return false;
}
