/*
jQuery functions
*/

	$(document).ready(function() {


  $("body").css("visibility","visible");
  
  
			$("a[rel=example_group]").fancybox({
				'titlePosition' 	: 'over',
				'overlayOpacity'	:	0.8,
				'overlayColor'		:	'#FFFFFF',	
				'centerOnScroll'	: 'true',		
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
			
					$("a.openGal").fancybox({
				'titlePosition' 	: 'over',
				'overlayOpacity'	:	0.8,
				'overlayColor'		:	'#FFFFFF',	
				'centerOnScroll'	: 'true',		
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});	
			
		

//$('img').css('display','inherit');
$('.eachpost.jq img').fadeIn(300);


/*$('.eachpost.jq img').load(function(){
  /*if($(this).height() > 100) {
    $(this).addClass('bigImg');
  }
  $('.imgCont').css('height',$(this).height());
});*/

    $(".eachpost.jq").bind("mouseover",function(){
    $(this).animate({"opacity": "0.7"}, 100);
    }).bind("mouseleave",function(){
    $(this).animate({"opacity": "1"}, 300);
    });
       


				});

