jQuery(document).ready(function($){
	$('.mainNav li').hover(function() {
		$(this).find('ul:first').show();
	}, function() {
		$(this).find('ul:first').hide();
	});
});

function trim(str) {
	str = '' + str;
	var re = /^ */;
	var res = str.replace(re, '');
	re = / *$/;
	return(res.replace(re, ''));
}