$(document).ready(function () {
	// Fixes target="_blank"
	$('a').each(function(){
		if($(this).hasClass('_blank')) {
			$(this).click(function() {
				window.open($(this).attr('href'));
                return false;
            });
		}     
	});
	
	// Initiates Gallery
	$('.gallery').jqGalViewII();
});
