$(document).ready(function(){
	$("a#more").fancybox({
		'hideOnContentClick': true,
		'titlePosition'		: 'outside',
		'transitionIn'		: 'fade',
		'transitionOut'		: 'elastic',
		'autoDimensions'    : false,
		'height'		    : 450,
		'width'				: 700,				
		'overlayOpacity': 0.6,
		'overlayColor': '#000'		
	});
	
	$("a#more_phi").fancybox({
		'hideOnContentClick': true,
		'titlePosition'		: 'outside',
		'transitionIn'		: 'fade',
		'transitionOut'		: 'elastic',
		'autoDimensions'    : false,
		'height'		    : 170,
		'width'				: 700,				
		'overlayOpacity': 0.6,
		'overlayColor': '#000'		
	});
	
	$('#gallery li').mouseenter(function(){
		$(this).find('img').fadeOut(500);
		$(this).children('div').fadeIn(500);
	});
	
	$('#gallery li').mouseleave(function(){
		$(this).find('img').fadeIn(500);
		$(this).children('div').fadeOut(500);
	});														
	
	$('#gallery li a').fancybox({
		'titlePosition'  : 'inside',
		'onStart'		 : function(){
			$('#gallery li img').show();
			$('#gallery li > div').hide();
		}
	});
	
	$('#gallery li img').lazyload({
		effect      : "fadeIn"
	});
			
   
}); 

