	/*
	* http://books.if.ua
	* common.js
	* Author: Alex Baskov (http://www.devtrix.net)
	* (c) Devtrix, 2009
	*/

	$(document).ready(function() {

		$(".trb").mouseover(function() { $(this).addClass("trb_over"); }).mouseout(function() { $(this).removeClass("trb_over"); });
		$(".book_info").find(".row").mouseover(function() { $(this).addClass("row_over"); }).mouseout(function() { $(this).removeClass("row_over"); });
	});


