	// Menu image fade
	$(function() {
		
		// Twitter 
		$("li.twitter-item").hover(function (){
			$(this).stop().animate({ 
					backgroundColor: "#000" 
				}, 'fast');		
			},
			
			function () {
				$(this).stop().animate({ 
					backgroundColor: "#1c1c1c" 
				}, 'fast');		
			
	
		});
				// Submit
		$("input[type='submit']").hover(function (){
			$(this).stop().animate({ 
					backgroundColor: "#000",
					color: "#990000"
				}, 'fast');		
			},
			
			function () {
				$(this).stop().animate({ 
					backgroundColor: "#1c1c1c" ,
					color: "#999999"
				}, 'fast');		
			
	
		});
		$("textarea").hover(function (){
			$(this).stop().animate({ 
					backgroundColor: "#000",
					color: "#990000"
				}, 'fast');		
			},
			
			function () {
				$(this).stop().animate({ 
					backgroundColor: "#1c1c1c" ,
					color: "#999999"
				}, 'fast');		
			
	
		});
		$("input[type='text']").hover(function (){
			$(this).stop().animate({ 
					backgroundColor: "#000",
					color: "#990000"
				}, 'fast');		
			},
			
			function () {
				$(this).stop().animate({ 
					backgroundColor: "#1c1c1c" ,
					color: "#999999"
				}, 'fast');		
			
	
		});
 
		
		
		
/*		// Gig
		$("tr.gig").hover(function (){
			$(this).stop().animate({ 
					backgroundColor: "#000" 
				}, 'fast');		
			},
			
			function () {
				$(this).stop().animate({ 
					backgroundColor: "#1c1c1c" 
				}, 'fast');		
			
	
		});*/
/*			$("#main-nav .current_page_item li a").hover(function (){
			$(this).stop().animate({ 
					color: "#FFF" 
				}, 'fast');		
			},
			
			function () {
				$(this).stop().animate({ 
					color: "#000" 
				}, 'fast');		
			
	
		});
		
		$("#main-nav li a").hover(function (){
			$(this).stop().animate({ 
					color: "#920000" 
				}, 'fast');		
			},
			
			function () {
				$(this).stop().animate({ 
					color: "#CCC" 
				}, 'fast');		
			
	
		});*/
	
	
	});

// Clear Input box, use: onfocus="checkclear(this)"
function checkclear(what){

	if(!what._haschanged){

		what.value=''

	};

	what._haschanged=true;

}



