$(document).ready(function(){
	$(document).pngFix(); 
	$(".inner_bottom a.c").mouseover(function(){
		$(this).parent().addClass('inner_bottom_hover');
	});
	$(".inner_bottom a.c").mouseout(function(){
		$(this).parent().removeClass('inner_bottom_hover');
	});
	
	$(".inner_top a").mouseover(function(){
		$(this).parent().addClass('inner_top_hover');
	});
	$(".inner_top a").mouseout(function(){
		$(this).parent().removeClass('inner_top_hover');
	});
	
	if($("#content").height() < '580'){
		$("#content").css('height', '580px');
	}
});
