/* define the CLIENT NAME object to avoid conflicts with any third party code */

/* define all configurable variables used for the CLIENT NAME site */

/* define all reusable functions for the CLIENT NAME site */



/* jQuery DOMdocument.ready */
$(document).ready(function(){
	/* HTML; add HTML to the page that is not content. this HTML either purely decorative, or purely functional (requiring JS to work). */
	
	$('#facebook').css('opacity',0);
	$('#myspace').css('opacity',0);
				
	$('#facebook').click(function(){
		window.location = 'http://www.facebook.com/pages/GlassTones/227410330601';
						  
	});
	
	$('#myspace').click(function(){
		window.location = 'http://www.myspace.com/glasstones';
						  
	})
	
	
								
			

	//$('div#hotelBtnHome').click( function(){

				
				
	/* Visual Clean-Up; help non standards-based browsers render the page properly. */
		
});


