
		$(document).ready(function(){
			
			$(".services ul li .overlay").mouseover( function() {
				$(this).parents("li").addClass("hover");
				$(this).parents("li").everyTime(100, function(i) {
					$(this).find("img").css({top: "-"+100*i+"px"});
				}, 3);				
			});

			$(".services ul li .overlay").mouseout( function() { 
					$(this).parents("li").removeClass("hover");
					$(this).parents("li").stopTime();
					$(this).parents("li").find("img").css({top: "0px"});
			});		
			
			$(".services-mini ul li").mouseover( function() {
				$(this).addClass("hover");
			});

			$(".services-mini ul li").mouseout( function() { 
				$(this).removeClass("hover");
			});		
					
			$(".services ul li, .services-mini ul li").click(function(){
				window.location=$(this).find("a").attr("href"); 
			});	
			
			$(".order-button").click(function(){
				$(".order-form").show("normal");
			});	

			$(".cancel-order").click(function(){
				$(".order-form").hide("normal");
			});	
					
		});

