// JavaScript Document
jQuery.noConflict();
(function($){

$(document).ready(function(){
						   
$('ul#mainMenu li').hover(
function () {
	$(this).addClass('active');
	$(this).children('.downlist').fadeIn('fast');
},
function () {
	$(this).removeClass('active');
	$(this).children('.downlist').fadeOut();
}
);
});
})(jQuery);

