$(function() {

	$("a[href$=.jpg],a[href$=.png],a[href$=.gif]").fancybox();

	$("a[href^='http']:not([href*='jpa'])").attr('target','_blank'); // open all external links in new window

	$('.poll_option').click(function() {
		//$('#poll-form').submit();
		$.post('/', { poll_option: $(this).val() }, function(data, status, result) {
			$('#poll').html( $('#poll', result.responseText).html() );
		});
	});
	
	$('#poll-results-url').click(function() {
		$('#poll-wrapper').load($(this).attr('href') + ' #poll');
		return false; // ignore default anchor action
	});
});

