function talk(){
	alert("g");
}

jQuery.noConflict()
jQuery(document).ready(function() {

	jQuery(".mainnav li").hover(function() {
	
		jQuery(this).children("ul").show();
	
	}, function() {
	
		jQuery(this).children("ul").hide();
	
	});



});
