jQuery(function( $ ){
				

/*------*/			
// BackToTop animate
/*------*/
	$('a.backtotop').click(function(){
		$('html,body').animate({scrollTop:0}, 'slow');
		return false;
	});
	
	$('a.goToByScroll').click(function(){
		var target = $(this).attr("href");
		//alert(target);
 		if( target ) {
			$('html,body').animate({scrollTop: $(target).offset().top},'slow');
		}
		return false;
	});


	$(".taf-link a").fancybox({
				'width'				: 450,
				'height'			: 480,
				'autoScale'			: false,
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'type'				: 'iframe'
			});

	
		
}); //End of Jquery.


