// JavaScript Document
	    $(document).ready(function() {	
			$(".img-menu").not(".img-menu-selected").mouseover(function() { 
            	var src = $(this).attr("src").match(/[^\.]+/) + "-o.png";
           		$(this).attr("src", src);
        	}).mouseout(function() {
            	var src = $(this).attr("src").replace("-o", "");
            	$(this).attr("src", src);
        	});
			$(".img-social").mouseover(function() { 
            	var src = $(this).attr("src").match(/[^\.]+/) + "-o.png";
           		$(this).attr("src", src);
        	}).mouseout(function() {
            	var src = $(this).attr("src").replace("-o", "");
            	$(this).attr("src", src);
        	});
			$(".img-foot-social").mouseover(function() { 
            	var src = $(this).attr("src").match(/[^\.]+/) + "-o.png";
           		$(this).attr("src", src);
        	}).mouseout(function() {
            	var src = $(this).attr("src").replace("-o", "");
            	$(this).attr("src", src);
        	});			
			$(".form-wintickets-button").mouseover(function(){
				$(this).css("background-image", "url(images/go-o.png)");
			}).mouseout(function(){
				$(this).css("background-image", "url(images/go.png)");
			});
			$(".form-wintickets-text").focus(function(){
				if ($(this).val() == "... Your Email Address") $(this).val("");										  
			}).blur(function(){
				if ($(this).val() == "") $(this).val("... Your Email Address");				
			});
			$("#form-contact-name").focus(function(){
				if ($(this).val() == "NAME") $(this).css("color", "#fff").val("");										  
			}).blur(function(){
				if ($(this).val() == "") $(this).css("color", "#f09").val("NAME");				
			});
			$("#form-contact-email").focus(function(){
				if ($(this).val() == "EMAIL ADDRESS") $(this).css("color", "#fff").val("");										  
			}).blur(function(){
				if ($(this).val() == "") $(this).css("color", "#f09").val("EMAIL ADDRESS");				
			});	
			$("#form-contact-phone").focus(function(){
				if ($(this).val() == "PHONE NUMBER (not required)") $(this).css("color", "#fff").val("");										  
			}).blur(function(){
				if ($(this).val() == "") $(this).css("color", "#f09").val("PHONE NUMBER (not required)");				
			});	
			$("#form-contact-subject").focus(function(){
				if ($(this).val() == "SUBJECT") $(this).css("color", "#fff").val("");										  
			}).blur(function(){
				if ($(this).val() == "") $(this).css("color", "#f09").val("SUBJECT");				
			});		
			$(".form-contact-button").mouseover(function(){
				$(this).css("background-image", "url(images/send-o.png)");
			}).mouseout(function(){
				$(this).css("background-image", "url(images/send.png)");
			});
		});
