$(function() {
		
		
		//main menu script
		$("ul#menu span").css("opacity","0");
		$("ul#menu span").hover(function () {
			$(this).stop().animate({
				opacity: 1
			}, 'midle');
			
		},
		function () {
			$(this).stop().animate({
				opacity: 0
			}, 'midle');
		});
		//End of main menu
		
		
		
		//services menu script
		$(".ServicesContainer").hover(function (){
				clearTimeout($(this).data('timeout'));
				$("ul.Sub_menu").slideDown(1000);
				},
				function (){
				var t = setTimeout(function() {
				$("ul.Sub_menu").slideUp(500);
				},1000);
				 $(this).data('timeout', t);
				});
		//End of services
			
			
			
		
		//services sub menu script
		$(".Sub_menu li a").hover(function (){
				$(this).stop().css({'color':'#8B0208', 'font-weight':'bold'});
				},
						      function (){
				$(this).stop().css({'color':'#FFFFFF', 'font-weight':''});
				});
		//End of sub menu
		
		

		// Read More Button
			$('.ReadMore a').hover(function(){  
  				 $(this).stop().animate({'opacity' : '0'}, 1000);  
  			 		}, 
				 function(){$(this).stop().animate({'opacity' : '1'}, 1000);
			 });  

		//End of read more




		// Read More Button
			$("#social-media span").css("opacity","0");
			$('#social-media span').hover(function(){  
 				  $(this).stop().animate({'opacity' : '1'}, 400);  
 				  },
				  function(){$(this).stop().animate({'opacity' : '0'}, 400);
 			});  

		//End of read more
		

		
});
