/*
Original: Sun Kim
Customized for http://hanpower.com
*/
$(document).ready(function() {
	jQuery("#login_click").click(function() {      
		window.location=$(this).parent("a").attr("href");
	});

	jQuery("#logout_click").click(function() {      
		window.location=$(this).parent("a").attr("href");
	});

	jQuery("#myjquerymenu ul li").click(function() {      
		new_dest=$(this).find("a").attr("href");
		image_file=$(this).css("background-image");
		image_file1=image_file.split("/");
		image_file2=image_file1[1].split(")");
		window.location=new_dest;
	});



	jQuery('#go_other_town').click(function(){
			$('#area_pop').toggleClass("hide_contents");
	});

	var tt = jQuery('#my_login_id').text();
	tt = trim(tt);

	if (tt != "") {
		$('#login_button').toggleClass("hide_contents");
	} else {
		$('#my_login').toggleClass("hide_contents");
	}


});