$(document).ready(function(){
		
			$("ul.topnav li a").hover(function() { //When link is hovered over...
		
				//if IE then just show and hide menu without effects as IE doesnt like to fade in with PNG's.
				if (jQuery.browser.msie) {
				
					$(this).parent().find("ul.subnav").show(); //Drop down the subnav on click
			
					$(this).parent().hover(function() {
					}, function(){
						$(this).parent().find("ul.subnav").hide(); //When the mouse hovers out of the subnav, move it back up
					});
				
				
				}
				else
				{
					//Following events are applied to the subnav itself (moving subnav up and down)
					$(this).parent().find("ul.subnav").fadeTo('slow', '1', function(){
						   if (jQuery.browser.msie)  
							this.style.removeAttribute('filter');
						}).show(); //Drop down the subnav on click
			
					$(this).parent().hover(function() {
					}, function(){
						$(this).parent().find("ul.subnav").hide(); //When the mouse hovers out of the subnav, move it back up
					});
				}		
		
			});
			
			
			$('#country').change(function(){
				
				$.post('us_button.php',{dropdown: "uk => us"}, function(data) {
					window.location = 'http://www.nextgreencar.com.us';
				});
			
			});
		
});
