$(document).ready(function(){
	$(".content_service").fadeIn("slow");
			
	$(".nav_prom img, .nav_serv img, .nav_book img, .nav_cont img, .nav_gall img, .serv_wedd img, .serv_scho img, .serv_nigh img, .serv_tour img, .serv_othe img").hoverIntent(function(){
	$(this).fadeTo("medium", 0.0);
		},
		function(){
			$(this).fadeTo("medium", 1.0);
	});
		
	$("a.service_fade").click(function(x){
       x.preventDefault();
       var $this = $(this), link = $this.attr('href');
       	$(".content_service").fadeOut(function(){
               window.location = link;
      		})
		  });
	
	$("a.nav_fade").click(function(e){
       e.preventDefault();
       var $this = $(this), link = $this.attr('href');
       	$(".contentnjs").fadeOut(function(){
               window.location = link;
      		})
		  });
	
	
});