//utf-8

$(document).ready(function(){
	$(".a2,.a3").mouseover(function(){
		if (this.style.background.indexOf("bg_03") == -1) {
			$(this).css("background","url(images/left_item_bg_02.png)");
			//$(this).fadeTo("fast", 0.66);
			//$(this).fadeTo("fast", 1);
		}
	})
	
	$(".a2,.a3").mouseout(function(){
		if(this.style.background.indexOf("bg_03") == -1){
			$(this).css("background","none");
		}
	})
	
	$(".a2,.a3").click(function(){
		$(".a2,.a3").css("background","none");
		$(this).css("background","url(images/left_item_bg_03.png)");
		$(this).fadeTo("fast", 0.66);
		$(this).fadeTo("fast", 1);
		window.location = "#i";
		this.blur();
	})
	
	$("#ifrm").load(function(){
		var h = $(this).contents().find("body").height()+30;
		$(this).height(h);
	}); 	
	
})
