/* ************************************************************************************ */
/* Change Log                                                                           */
/*                                                                                      */
/* 28-08-2009  - Richard Chapman - Deltasoft - Force jQuery specific reference to avoid */
/*                                             conflicts with MooTools library          */
/* ************************************************************************************ */
jQuery(document).ready(function(){

	jQuery("ul.dropdown li").dropdown();

});

jQuery.fn.dropdown = function() {

	jQuery(this).hover(function(){
		jQuery(this).addClass("hover");
		jQuery('> .dir',this).addClass("open");
		jQuery('ul:first',this).css('visibility', 'visible');
	},function(){
		jQuery(this).removeClass("hover");
		jQuery('.open',this).removeClass("open");
		jQuery('ul:first',this).css('visibility', 'hidden');
	});

}