$(document).ready(function(){

		
		//NAVIGATION FOR MOBILE DEVICES
		$("#MobileNavigation").change(function(){
			
				if($(this).val() == "ChooseAPage")
				{
					return false;
				}
				else
				{
					window.location = $(this).val();
				}
		});
		
		
		
});
