$(document).ready(function(){

$("#commentForm").validate();

	$("a.latest_01").hover(function() {
		$(this).stop().animate({opacity: .8}, 450);
	}, function() {
		$(this).stop().animate({opacity: 1}, 450);
         return false;
	});
$("a.latest_01").fancybox({
        'overlayShow':	true

	});

$("a.photos_thumb").fancybox({
        'overlayShow':	true

	});
	
	
//Top

    $(".top").click( function(){
    $('html, body').animate({scrollTop:0}, 'slow');
    });	




});