$(document).ready(function() { 
	
	$(".style3_tabs_calendar").mouseover(function () {
		tab_name = $(this).attr("rel");
		
		$(this).css("background-image", "url(images/style3_tabs_calendar_" + tab_name + "_active.gif)");
	
	});
	
	$(".style3_tabs_calendar").mouseout(function () {
		tab_name = $(this).attr("rel");

		if (style3_calendar != tab_name) {
			$(this).css("background-image", "url(images/style3_tabs_calendar_" + tab_name + "_inactive.gif)");
		}
	
	});

	//style3_tab_active = "style3_tabs_calendar_" + style3_calendar;
	
	//$("#" + style3_tab_active).css("background-image", "url(images/style3_tabs_calendar_" + style3_calendar + "_active.gif)");


	$("#style2_nav_dropoff").mouseover(function () {
		dropoff();
	});
	
	$("#main_content").mouseover(function () {
		dropoff();
	});
	
	$(".parking_banner_codelink").click(function() {
		div_rel = $(this).attr("rel");
		
		div_id = "#parking_banner_code_" + div_rel;
		
		$(div_id).toggle();
	
	});
	
	$(".parking_banner_code_text").click(function() {
		$(this).select();
	
	});

});
