$(function() {
	
	//polls();
	
	$(".fade > img").hover(function() {
		$(this).fadeTo("fast",0.5);
	}, function() {
		$(this).fadeTo("fast",1);
	});
	
});

function polls() {	
	if($(location).attr('href').toLowerCase().indexOf('photography') === -1) {
		$('.widget_polls-widget').each(function() {
			$(this).hide();
		});
	}
}

