Current File : /home/virtualki/22346/oldwp/wp-content/themes/megiw/js/main-menu.js
(function($){
	$(document).ready(function(){
		$('.main-menu').each(function(){
			var $this = $(this);
			var $select = $this.find('select');
			var $dropdown = $('<div class="dropdown"></div>');
			var $header = $this.find('h2');			
			
			$dropdown.text($header.text());			
			$select.wrap($dropdown);
			
			$select.change(function(){
				var href = $(this).val();
				
				if(window.location.href != href){
					window.location.href = href;
				}				
			})		
		});
	});
})(jQuery);