$(document).ready(function(){
	$(".hot_topic_block").click(function()
	{
		window.location=$(this).find("a").attr("href");return false;
	});	

	$(".hot_topic_block").hover(
	function () 
		{			
		  $(this).css('background', 'url(\'/media/images/hot-bg2.png\') repeat 0 0');
		}, 
	function () 
		{
		  $(this).css('background', 'url(\'/media/images/hot-bg.png\') repeat 0 0');
		}
	);
	$(".hot_topic_block").slideDown(1000);
	
	$(window).resize(function(){
	});
});

function dbg(dbg_txt)
{
$(".main").append("<div style=\"position: absolute; z-index: 254; left: 510px; top: 110px; width: 420px; height: 520px; background: black; opacity: 0.6;\"></div><div id=\"dbg_field\" style=\"position: absolute; z-index: 255; left: 500px; top: 100px; width: 400px; height: 500px; padding: 20px; overflow: scroll; border: 10px solid #000; background: white; color: black;\"><br><center><h1>DEBUG</h1></center><div style=\"margin: 15px;\"></div></div>");
$("#dbg_field").append(dbg_txt);
}