var $jqOld = jQuery.noConflict();

$jqOld(document).ready(function() {
	fixPNG('#xxxx-header ul li a span.graphic');
	
	$jqOld("#xxxx-header ul li:not(.first)").hover(function() {
		$jqOld("span.graphic", this).css('display', 'block');
	}, function() {
		$jqOld("span.graphic", this).css('display', 'none');
	});
	
	$jqOld("#xxxx-header ul li a span.graphic").hover(function() {
		$(this).toggleClass('active');
	}, function() {
		$(this).toggleClass('active');
	});
});

function fixPNG(selector)
{
	$jqOld.ifixpng('http://www.xxxx.com.au/globalnavigation/images/pixel.gif');
	$jqOld(selector).ifixpng();
}