/**
 * Last Edit
 * By	:	Michael
 * When	:	28 10 09
 * What	:	Now referenced as an extension to jquery, to avoid conflicts.
 */

(function($) {
	$(document).ready(function(){
		$("ul.nav").superfish();
		$('#promotion img').parent('a').addClass('imagelink');
	});
})(jQuery)

/*
// cusomisation options listed here, if you need them
$(document).ready(function(){
	$("ul.nav").superfish({
		hoverClass	: "sfHover",
		pathClass	: "overideThisToUse",
		delay		: 800,
		animation	: {opacity:"show"},
		speed		: "normal",
		oldJquery	: false, // set to true if using jQuery version below 1.2 
		disableHI	: false, // set to true to disable hoverIntent detection 
		onInit		: function(){},
		onBeforeShow	: function(){},
		onShow		: function(){},
		onHide		: function(){}
	});
});
*/
