﻿jQuery(document).ready(function() {
	jQuery('#search').mouseenter(function() {
		jQuery(this).find('.btn').attr('src','img/btn_search_over.jpg');
	});

	jQuery('#search').mouseleave(function() {
		jQuery(this).find('.btn').attr('src','img/btn_search.jpg');
	});

	jQuery('#mainNav ul li').hover(function() {
		jQuery('.submenu', this).show();	
		jQuery('a:first', this).addClass('hover');
	}, function() {
		jQuery('.submenu', this).hide();	
		jQuery('a:first', this).removeClass('hover');
	});
});


