$(document).ready(function() {
	$('div.submenu').parent().hover(function() {
		$(this).children('div,img:not(.noHide)').css('display', 'block');
	}, function () {
		$(this).children('div,img:not(.noHide)').css('display', 'none');
	});
	$('.search').click(function() {
		if ($(this).attr('value') == 'Search') {
			$(this).attr('value','');
		}
	});

	/*w = $('ul.topnav > li:last-child').width() - 2;
	w = w - $('ul.topnav > li:last-child > div.submenu').width();
	$('ul.topnav > li:last-child > div.submenu').css('left',w+'px');*/

});
