$(document).ready(function(){

            $('a').bind('click',function(event){
                var $anchor = $(this);
                $('html, body').stop().animate({scrollTop: $($anchor.attr('href')).offset().top}, 1000);
            event.preventDefault();
            });
        

});
	
		
$(document).ready(function() {
	if($('.RepairWrap').length > 0){
		
		$(".ClickForForm p").click(function(){
			$.fancybox({
				'content': $('.ContactForm').html(),
				'autoDimensions'	: false,
				'width'         		: '700',
				'height'        		: '850',
				'transitionIn'		: 'none',
				'transitionOut'		: 'none'
			});
		});
		
		$("#cost").click(function(){
			$.fancybox({
				'content': $('.cost').html(),
				'autoDimensions'	: false,
				'width'         		: '700',
				'height'        		: '650',
				'transitionIn'		: 'none',
				'transitionOut'		: 'none'
			});
		});
		}
	
});	
