$(document).ready(function() {

   	$("ul.gallery li.gallery a").animate({ opacity: 0.6 }, 0);

   	$("ul.gallery li.gallery a").hover(function() {
    	$(this).animate({ opacity: 1.0 }, 200);
	},
    function() {
		$(this).animate({ opacity: 0.6 }, 500);
	});
	
	$(function() {
        $('ul.gallery li.gallery a').lightBox();
    });	

 });