	/*
	* http://tera.if.ua
	* common.js
	* Author: Alex Baskov (http://www.devtrix.net)
	* (c) Devtrix, 2010
	*/

	$(document).ready(function()
	{
		$("html").attr("id", "JS");
		$(".list_item").mouseover(function() { $(this).addClass("list_item_over"); }).mouseout(function() { $(this).removeClass("list_item_over"); });
		$(".button_download").mouseover(function() { $(this).addClass("button_download_over"); }).mouseout(function() { $(this).removeClass("button_download_over"); });

	});


