$(document).ready(function(){
	//$('.dropdown a.selected').removeAttr('href');
	$('.dropdown a').hover(
		function(){
			$(this).parent().children('ul').slideDown(100);
		},
		function(){
		}
	);
	$('.dropdown').hover(
		function(){
		},
		function(){
			$(this).children('ul').slideUp(100);
		}
	);
});
