		
		$(document).ready(function() {
			$("#comingsoon").bind("click", function(){
				if( this.className.indexOf('comingsoonText') >= 0 ) 
				{
					$(this).removeClass("comingsoonText");
					$(this).addClass("comingsoonPhoto");
				}
				else
				{
					$(this).removeClass("comingsoonPhoto");
					$(this).addClass("comingsoonText");
				}
			});
			$("#Linkedin").hover(
				function(){ this.src = 'images/btn_in_on.gif'; }, function(){ this.src = 'images/btn_in_off.gif'; });
			$("#Facebook").hover(
				function(){ this.src = 'images/btn_f_on.gif'; }, function(){ this.src = 'images/btn_f_off.gif'; });
			$("#Twitter").hover(
				function(){ this.src = 'images/btn_t_on.gif'; }, function(){ this.src = 'images/btn_t_off.gif'; });
			$("#Delicious").hover(
				function(){ this.src = 'images/btn_d_on.gif'; }, function(){ this.src = 'images/btn_d_off.gif'; });
			$("#Flickr").hover(
				function(){ this.src = 'images/btn_fr_on.gif'; }, function(){ this.src = 'images/btn_fr_off.gif'; });
			/*$("#Google").hover(
				function(){ this.src = 'images/btn_g_on.gif'; }, function(){ this.src = 'images/btn_g_off.gif'; });*/
 		});