jQuery.ajaxSetup({type: "POST"});

jQuery(document).ready(function() {
																
	jQuery("#testimonials a").mouseover(
	function(){
		jQuery(this).addClass("mo");
		}
	);	
	jQuery("#testimonials a").mouseout(
	function(){
		jQuery(this).removeClass("mo");
		}
	);
	
	jQuery("#home a").mouseover(
	function(){
		jQuery(this).addClass("mo");
		}
	);	
	jQuery("#home a").mouseout(
	function(){
		jQuery(this).removeClass("mo");
		}
	);
		
	
	//jQuery("#submit").css({background:"none"});
	//jQuery("#submit").css({'background-position':"0 30px"});
	
	jQuery("#submit").mouseover(
	function(){
		//jQuery(this).attr("src", "img/button_send_mo.gif");
		jQuery(this).css({'background-position':"0 -25px"});
		}
	);	
	jQuery("#submit").mouseout(
	function(){
		//jQuery(this).attr("src", "img/button_send.gif");
		//jQuery(this).css({background-position:"0 30px;"})
		jQuery(this).css({'background-position':"0 0"});
		}
	);	
	
	
	jQuery("#testimonialsContent ul li.home a").mouseover(
	function(){
		jQuery(this).addClass("mo");
		}
	);
	
	jQuery("#testimonialsContent ul li.home a").mouseout(
	function(){
		jQuery(this).removeClass("mo");
		}
	);	

	/*
	jQuery("#contactForm").bind("submit", function(event){	
	return false;
	}
	);
	*/
	
	}
);