$(function(){
 $('#menu > li').mouseover(function(event) {
  $(this).find('ul.sub')
   .show()
 });
 $('#menu > li').mouseout(function(event) {
  $(this).find('ul.sub')
	.hide()
 });
 $("#form").validate();
 $('#form .submit').click(function(){
	$('#form').submit();
 });
$('#map').fancybox({
			'width'				: '85%',
			'height'			: '85%',
			'autoScale'			: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe',
			'titleShow'			: false
 });
});
