
jQuery(document).ready(function($){

	
	
	if($('.galleryItem'))
		{
		
			$('#flickrFeed img').fadeTo("normal", 0.9);
		
		}
		
		
	$('#flickrFeed').hover(
	  function () {
		$(this).find('img').fadeTo("normal", 1);
	  }, 
	  function () {
		$(this).find('img').fadeTo("normal", 0.9);
	  }
	);
	
	
});	

$(function() {

        $('#flickrFeed a').lightBox({
			imageLoading: '/wp-content/themes/default/images/lightbox-ico-loading.gif',
			imageBtnClose: '/wp-content/themes/default/images/lightbox-btn-close.gif',
			imageBtnPrev: '/wp-content/themes/default/images/lightbox-btn-prev.gif',
			imageBtnNext: '/wp-content/themes/default/images/lightbox-btn-next.gif',
			imageBlank: '/wp-content/themes/default/images/lightbox-blank.gif'
			
		});
    });


