$(function() {
	// replace the a href with a direct link to the large image
	$('.flickr_badge_image a').each(function() {
		// to compy with the flickr rules
		$(this).attr('title', '<a href="' + $(this).attr('href') + '">View image on flickr</ ' + 'a>');
		var str = $(this).find('img').attr('src');
		str = str.replace(/_s.jpg/, '.jpg');
		$(this).attr('href', str);
	});
	$('.flickr_badge_image a').lightBox();

	if (! navigator.userAgent.match(/iPhone/i) ) { // if not the iPhone
		// make map sized to screen
		var iwidth = $('#map').width() - 10; // 2 x 5px for padding
		$('#map').empty().append('<iframe width="' + iwidth + '" height="480" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com.au/maps/ms?ie=UTF8&amp;hl=en&amp;t=p&amp;s=AARTsJpslqPnuWiNLfZGtHFTfu81GcXW3A&amp;msa=0&amp;msid=107504362017819020751.00000112989f7e22ef6a3&amp;ll=-33.421126,149.578686&amp;spn=0.017193,0.027466&amp;z=15&amp;output=embed">Browser must support iFrames</iframe>');
	}

});
$(document).ready(function() {
	$('.sections').tabs({ fx: { opacity: 'toggle' } });
	$('.takesurvey a').click(function() {
		$('.sections').triggerTab(8);
	}).add('.anchors a:last').click(function() {
		$('#wufoo').prepend('<iframe height="631" frameborder="0" scrolling="no" style="width:100%;border:none" src="http://bathurstpubs.wufoo.com/embed/about-you/" title="HTML Form"><a href="http://bathurstpubs.wufoo.com/forms/about-you/" title="About you">Fill out my Wufoo form!</a></iframe>');	
	});
});