$(document).ready(function(){	

    $.easy.navigation();
	$.easy.tooltip();
	$.easy.popup();
	$.easy.external();
	$.easy.rotate();
	$.easy.forms();
	$.easy.showhide();
	$.easy.jump();
	
/*	$(".fade").fadeTo("slow", 0.10);*/

	$(".fade").hover(function () {$(this).fadeTo("slow", 0.7);}, function () {$(this).fadeTo("slow", 1);});
	
	$('.sidebarnav li a').mouseover(function () {
		$(this).animate({ paddingLeft: "10px" }, 230 );
		});
	$('.sidebarnav li a').mouseout(function () {
		$(this).animate({ paddingLeft: "0px" }, 230 );
		});
	/*
	$('#links-sector a').mouseover(function () {
		$(this).animate({ paddingTop: "2px" }, 50 );
		});
	$('#links-sector a').mouseout(function () {
		$(this).animate({ paddingTop: "0px" }, 50 );
		});
	*/

<!-- ajax contact form -->
			  $('#contact').ajaxForm(function(data) {
				 if (data==1){
					 $('#success').fadeIn("slow");
					 $('#bademail').fadeOut("slow");
					 $('#badserver').fadeOut("slow");
					 $('#contact').resetForm();
					 }
				 else if (data==2){
						 $('#badserver').fadeIn("slow");
					  }
				 else if (data==3)
					{
					 $('#bademail').fadeIn("slow");
					}
				 else if (data==4)
				 	{
					 $('#wrongcaptcha').fadeIn("slow");
					}
					});
   <!-- ajax contact form -->
   
});

