//navigation.js

jQuery.noConflict();

var navigation = {
	show:function(e) {
		if(jQuery(e).find(".sub").css("display")=="none") {
			jQuery(e).find(".sub").show();
		}
	}, //show()
	hide:function(e) {	
		jQuery(e).find(".sub").hide();	
	} //hide()
	
};

jQuery(document).ready(function() {
	jQuery("#navigation li").mouseover(function() {
		navigation.show(this);
	}).mouseout(function() {
		navigation.hide(this);
	});
});