﻿// JavaScript Document
//hover style for navigation 
$(document).ready(function() {
	$("#switch_area a").hover(function() {
		var areaid = $(this).attr("id");
		$("#switch_area").css("background","url(images/bg_" + areaid + ".jpg) top center no-repeat");
	},function() {
		//$("#switch_area").css("background","url(images/bg_area_default.jpg) top center no-repeat");
	});
});
