jQuery(document).ready(function(){	
          $(".fancybox").fancybox({
          'transitionIn'     :     'elastic',
          'transitionOut'     :     'elastic',
          'speedIn'          :     200,
          'speedOut'          :     200,
          'overlayShow'     :     true,
	  'autoScale'		:		false
    });

$("#navigation ul li a.commercial-painters-decorators-a").hover(function() {
		$("#subnav-commercial").stop(true, true).fadeIn('medium'); },
		function() {
		$("#subnav-commercial").stop(true, true).fadeOut('medium'); 
	});
	
	$("#subnav-commercial").hover(function() {
		$(this).stop(true, true).show(); },
	function() {
		$(this).stop(true,true).fadeOut('medium'); 			
   });
	

$("#navigation ul li a.building-maintenance-refurbishment-a").hover(function() {
		$("#subnav-building-maintenance").stop(true, true).fadeIn('medium'); },
		function() {
		$("#subnav-building-maintenance").stop(true, true).fadeOut('medium'); 
	});
	
	$("#subnav-building-maintenance").hover(function() {
		$(this).stop(true, true).show(); },
	function() {
		$(this).stop(true,true).fadeOut('medium'); 			
   });
						
});

function goToByScroll(id){
     			$('html,body').animate({scrollTop: $("#"+id).offset().top-20},'slow');
		}

