$(document).ready(function() {
	if($('input.monthly').length > 0) {
		$('input.monthly').blur(function() {
			$('button.calculate').click();											 
		});
		$('button.calculate').click(function() {
			var total = 0;
			$('input.monthly').each(function() {
				var value = $(this).val().replace('$', "");
				if(value > 0) { } else { value = "0"; }
				total = total + (parseInt(value * 100) / 100);
			});
			$('#monthly_total').html("$" + total).animate({ color:"red" }, 500).animate({ color:"black" }, 500);
		});
	}
	$(".menu_item_photo-tours").mouseenter(function() {
		$(this).find("ul").slideDown();
	});
	$(".menu_item_floor-plans").mouseenter(function() {
		$(this).find("ul").slideDown();
	});
	$("ul#main_menu").mouseleave(function() {
		$(this).find("li ul.menu_title:visible").slideUp();
	});	
	
});
