//$j = jQuery.noConflict();

$(document).ready(function() {

	if($(".footLink").text() == ''){
		$("#footer").height("40px");
	}
	
	$("#thanks a").hover(function(){
		$("#thanks a").css("text-decoration","none");
	},function(){
		$("#thanks a").css("text-decoration","underline");
	});
	
	/* Выравнивание фотографий в галерее */
	ser = $(".photo_img a img");
	$.each(ser,function(){
		imgH = $(this).height();
		imgW = $(this).width();
		imgT = ( 180 - imgH ) / 2;
		$(this).css("padding-top",imgT + "px");
	});
	
	$(".subLi:first").css("margin-top","10px");
	$(".subLi:last").css("margin-bottom","10px");
	$(".subLi:last").css("padding-bottom","0px");
	
	tables = $(".blog table");
	$.each(tables,function(){
		$(this).children().children("tr").children("td").first().css({
			background: "#a4e1ff",
			"text-transform": "uppercase",
			"font-weight": "bold"
		});
		$(this).children().children("tr").first().next().children().css({
			background: "#cceeff",
			"font-weight": "bold"
		});
	});
	
});
