$(document).ready(
	function()
	{	
$('.makeHover').hover(function(){
    $(this).css('opacity', 0.8);
},function(){
    $(this).css('opacity', 1); });


    $(function() {
        $('.gallery a').lightBox();
    });
    $(function() {
        $('.active').css('opacity', 0.6);
    });  
		    
});

