// JavaScript Document
$(document).ready(function() {
	   
    	$('#Scroll_top').click(function(){ // to auto scroll page to top
			$('html, body').animate({scrollTop:0}, 'slow');			
		});
		
		
		$('#Contact_Us').mouseover(function(){$('#contact_arrow').addClass("contact_arrow_hover");});
		$('#Contact_Us').mouseout(function(){$('#contact_arrow').removeClass("contact_arrow_hover");});
		       
         $("a#get_contact_us_form").fancybox({speedIn : 600,speedOut : 600,'transitionIn': 'elastic','transitionOut': 'elastic'}); 	
		 $("a#get_contact_us_form_top").fancybox({speedIn : 600,speedOut : 600,'transitionIn': 'elastic','transitionOut': 'elastic',onStart : function(){$('#contact_us_form').addClass('fb_cont');},onClosed : function(){$('#contact_us_form').removeClass('fb_cont');}}); 	
	
});
