
//------------------------------------------------------------
//
// eTheme Polaroid Gallery Images Fix 
// removes height and width attributes and initialses fancybox
//
//------------------------------------------------------------
	
$(document).ready(function(){
	$(".content .content-column a img").removeAttr('width').removeAttr('height');
	$(".content .content-column a:has(img)").fancybox({
						'titlePosition'			: 'inside',
						'hideOnContentClick'	: true,
						'centerOnScroll'        : true,
						'overlayShow'			: true,
						'overlayOpacity'		: .5,
						'overlayColor'			: '#000',
						'zoomOpacity'			: true,
						'autoScale'		: false,
	});	 
});
