//Author: Bryan Black 
//Notes: This is the place to put any of your scripts that need to be called when the page loads !! 
//			This will also be used later to handle all events so the javascript will be non-obtrusive 
			

Event.observe(window,'load',function(){

//Fix for Safari Browser's background issue 

	if(BrowserDetect.browser == "Safari" && BrowserDetect.OS == "Mac"){
		document.body.style.background = '#C1C1C1';
	}
	 
	

	
 
})


