$().ready(function(){$('#menuMain li').not('.current').hover(function(){$(this).animate({backgroundColor:'#95caed'},250);$(this).children('a').animate({color:'#000000'},250);},function(){$(this).stop().animate({backgroundColor:'#ffffff'},250);$(this).children('a').stop().animate({color:'#98999c'},250);});$('#menuMain li').mousedown(function(){$(this).animate({backgroundColor:'#b6c0e0'},250);});$('#menuMain li.current').hover(function(){$(this).animate({backgroundColor:'#95caed'},250);},function(){$(this).stop().animate({backgroundColor:'#b6c0e0'},250);});var hasFocus=null;$('.button').hover(function(){$(this).animate({backgroundColor:'#657abd',borderTopColor:'#657abd',borderRightColor:'#657abd',borderBottomColor:'#657abd',borderLeftColor:'#657abd'},250);},function(){$(this).stop().animate({backgroundColor:'#69b5e5',borderTopColor:'#69b5e5',borderRightColor:'#69b5e5',borderBottomColor:'#69b5e5',borderLeftColor:'#69b5e5'},400);});$('label').hover(function(){if(hasFocus!=$(this).attr('for')){$(this).animate({backgroundColor:'#6d51a2'},250);}},function(){if(hasFocus==$(this).attr('for')){$(this).stop();}else{$(this).stop().animate({backgroundColor:'#7083c1'},400);}});$('input[type="text"]').add('textarea').focus(function(){$(this).parent().animate({backgroundColor:'#68a7ce'},250);hasFocus=$(this).parent().attr('for');});$('input[type="text"]').add('textarea').blur(function(){$(this).parent().animate({backgroundColor:'#7083c1'},250);hasFocus=null;});var container=$('ul#error');$("#contact").validate({errorLabelContainer:"#formError",errorElement:"em",wrapper:'span',rules:{name:{required:true,minlength:3},company:"required",email:{required:true,email:true},telephone:{required:true,minlength:6},subject:"required",message:"required"},messages:{name:{required:"Enter your name"},company:"Enter your company name",email:{required:"Enter your email address",email:"You've entered an invalid email address"},telephone:{required:"Enter your telephone number"},subject:"Enter a subject",message:"Enter a message"}});});