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 -30px"});
		}
	);	
	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;
	}
	);
	*/
	
	}
);


/*
jQuery(document).ready(function() {
	
	
	prev_class = jQuery("#womenWrap").children().attr("class");

	//jQuery("#womenWrap").children().css({display:"none"}).fadeIn(1800);
	
	//$("p").fadeOut("slow");
	//$("p").fadeIn("slow");
					
	jQuery(".img").mouseover(
		function() {
			jQuery(this).parent(".imgWrap").addClass("itemFocus");
		}
	);
	
	jQuery(".img").mouseout(
		function() {
			jQuery(this).parent(".imgWrap").removeClass("itemFocus");
		}
	);
	
	jQuery(".zoom").mouseover(
		function() {		
			jQuery(this).prev().prev(".imgWrap").addClass("itemFocus");		
		}
	);

	jQuery(".zoom").mouseout(
		function() {
			jQuery(this).prev().prev(".imgWrap").removeClass("itemFocus");
		}
	);
	
	jQuery("#mainNavigation a").mouseover(
	
		function() {
			//current_stage = jQuery(this).prev().attr("class");
			//current_stage = jQuery(this).prev().attr("class");
			new_class = jQuery(this).parent().attr("class");
			
			
			if(new_class != prev_class) {				
			
			//jQuery("#womenWrap").children().attr("class",new_class);
			
			
			jQuery("#womenWrap").children().attr("class",function() {
				
				jQuery("#womenWrap").children().fadeIn(2500,function(){	
					//alert('hi');
					jQuery("#womenWrap").children().attr("class",new_class);
					//$(parentLiElement).removeClass("act");
				}
				);
				
			});
			
			
			jQuery("#womenWrap").children().fadeOut(500);
			jQuery("#womenWrap").children().fadeIn(1000);
			jQuery("#womenWrap").children().attr("class",new_class);
			jQuery("#womenWrap").children().attr("class",new_class);
			
			
			
			//jQuery("#womenWrap").children().fadeOut(400);			
			jQuery("#womenWrap").children().css({display:"none"});
			jQuery("#womenWrap").children().attr("class",new_class).fadeIn(800);
			
			
			
			//jQuery("#womenWrap").children().css({display:"none"});
			
			//jQuery("#womenWrap").children().css({display:"none"}).fadeIn(200);
			
			
				jQuery("#womenWrap").fadeIn("slow",function(){
					//alert("Animation Done.");
					//jQuery("#womenWrap").children().attr("class",'').fadeOut("slow");
					jQuery("#womenWrap").children().attr("class",new_class).fadeIn("slow");
					
					//$("p").fadeOut("slow");
					//$("p").fadeIn("slow");
	
				});
			
			}
			
			
			popElement.fadeIn(500,
				function(){	
				//alert('hi');
				jQuery(popElement).css({display:"block"})
				//$(parentLiElement).removeClass("act");
				}
			);
			
									
			}
		}
	);
	
	jQuery("#mainNavigation a").mouseout(
	
		function() {
			//current_stage = jQuery(this).prev().attr("class");
			//current_stage = jQuery(this).prev().attr("class");
			//current_stage = jQuery(this).parent().attr("class");			
			//prev_class = jQuery("#womenWrap").children().attr("class");
			
			if(new_class != prev_class){
			//jQuery("#womenWrap").children().attr("class", prev_class);			
				//jQuery("#womenWrap").children().css({display:"none"});
				
				//jQuery("#womenWrap").children().fadeOut(100);
				
				jQuery("#womenWrap").children().attr("class",prev_class);
				jQuery("#womenWrap").children().css({display:"none"});
				jQuery("#womenWrap").children().attr("class",prev_class).fadeIn(500);
			}
									
		}
	);
	
	
	
	
});
*/