$(function() {
	
	// fixes for ie6
	if ($.browser.msie && $.browser.version < 7) {
		
		// fix the nav menu
		$('#main-nav ul:first li').hover(function() {
			$(this).addClass('hover');
			$('ul', this).show();
		}, function() {
			$('ul', this).hide();
			$(this).removeClass('hover');
		});
	}
	if ($.browser.msie) {
		// add first and last child classes in the footer
		$('#footer ul li:last-child').addClass('last-child');
		$('#footer ul li:first-child').addClass('first-child');
		
		$('#header #search_button').attr('value', '');	
	}
	
	// fancy box for gallery images
	$("#virtual-tour a").fancybox({
		'overlayShow' : false,
		'zoomOpacity' : true,
		'zoomSpeedIn' : 350,
		'zoomSpeedOut' : 350,
		'padding': 5
	});
	
	// change the date on the calendar	
	$('#right-panel.calendar #upcoming-events .events a').click(function() {
		href = $(this).attr('href');
		var parts = href.substr(1,href.length).split('-');
		$('#form_month').val(parts[0]);
		$('#form_year').val(parts[1]);
		$('#hidden_form').submit();
		return false;
	});
	
});


