function rocat() {
	$('.mact').attr('act','on');
	$('.mBtn')
	.hover(function() {
		if($(this).attr('act') != 'on') {
			$(this).addClass('mhover');
		}
	}, 
		function() {
		if($(this).attr('act') != 'on') {
			$(this).removeClass('mhover');
		}
	})
	.click(function() {
		$('.mact').removeClass('mact').attr('act','off');
		$(this).addClass('mact').removeClass('mhover').attr('act','on');
	})
}

$(document).ready(function() {
	rocat();
	
	$('#jump').click(function(){
		var pos = $('.gallery').offset();
		
		$('html,body').animate({scrollTop:pos.top}, 300);
		
	});
	
	$("a.gallery").fancybox({
        overlayOpacity: 0.5,
        zoomOpacity: true,
        imageScale: true,
        easingOut: 'easeInExpo',
        easingIn: 'easeOutExpo',
        easingChange: 'easeOutElastic',
        zoomSpeedIn: 500,
        zoomSpeedOut: 300,
        zoomSpeedChange: 500
    });
	
}); 


