$(document).ready(function() {
	$(".menu.main ul.hiddenMenu").hide(); 

	$(".menu.main li[class='']").hover(
		function () {
			tpos	=	$(this).position();
			ttop	=	tpos['top'];
			tleft	=	tpos['left'];
			
			$(this).children("ul.hiddenMenu").css('top', ttop);					
			$(this).children("ul.hiddenMenu").show();
			$(this).addClass("alt");
			$('a', this).attr('rel', $('a', this).attr('title'));
			$('a', this).attr('title', '');
		},function(){
			$(this).children("ul.hiddenMenu").hide();
			$(this).removeClass("alt");
			$('a', this).attr('title', $('a', this).attr('rel'));
			$('a', this).attr('rel', '');
	});
	
	$('#filter').change(function(){
		$('#filterForm').submit();
	});
});