jQuery(document).ready(function(){

	/**
	 * Disable tooltips created by other developer
	 */
	jQuery('.tooltip').hide();
	
	/**
	 * PhotoShelter specific
	 */
	photoshelter();

});

function photoshelter(){

	/**
	 * Remove padding from every fourth thumbnail
	 */
	jQuery('#container.photoshelter').find('ul.thumbs').each(function(){
	
		jQuery(this).find('li').each(function(index){
			
			if(((index + 1) %4) == 0){
				jQuery(this).css('padding', 0);
			}
		});
	});
}
