// navigation workings
$(document).ready(function(){
	$('.topbtn').click(function(event){
		//event.preventDefault();
	});
	$('.topbtn').hover(
		function() {
			$(this).siblings("ul").show();
		},
		function() {
			$(this).siblings("ul").hide();
		}
	);
	$('.submenu').hover(
		function() {
			$(this).show();
		},
		function() {
			$(this).hide();
		}
	);	
 });
