

// Find the nav menu that handles FCC Live and hijack it.
jQuery(document).ready(function($) {
	if ($('ul.menu a:contains("FCC Live")').size() < 1) { return; }
	$('ul.menu a:contains("FCC Live")').attr('target', '_blank');
	// Ideally would launch the popup directly from here, but possible the IP might change in future.  Unreliable.
});

/*
// Expanding Navigation
jQuery(document).ready(function($) {
	$("ul.menu:first > li").each(function(it) {
		if ($('ul', this).size()>0) { 
			$(this).addClass('hasSubMenu');
		}						  
	});
	$("ul.menu:first > li").hover(function() {
		$(this).addClass('active');
		$('ul', this).show(150);
	}, function() {
		$(this).removeClass('active');
		$('ul', this).hide(300);
	});
});
*/

/*
jQuery(document).ready(function($) {
	$('#footer #FooterEmailAddress').click(function() {
		win = window.open('mailto:firstchoicecare@firstchoicecare.com.au', 'emailWindow');
		win.close();
	});
});
*/