$(document).ready(function(){

	$(".biznes tr").hover(function() {
		//if ($(this).contains("test"))
		$(this).css({background: "#f0f0f0"});
		}, 
		function() {
		$(this).css({background: "transparent"});
	});
	
	$(".img_border2").hover(function() {
		$(this).css({border: "1px solid #83ace9",background: "#ececec"});
		}, 
		function() {
		$(this).css({border: "1px solid #cfcfcf",background: "transparent"});
	});
	return false;
});

