﻿$(document).ready( function(){

/*inputPlaceholder( document.getElementById('inp1') );*/

$('.category li a').each(function(){
		var h=$(this).find('span').height();
		$(this).find('span').css('margin-top', -h/2-2);
	});
var ch=$('.category').height();
$('.mainpage').css('padding-top', ch-20);
	
$('.category li:nth-child(2n)').addClass('fright');
$('.news li:nth-child(2n)').addClass('fright');
$('.one_cat li:nth-child(2n)').addClass('fright');
$('.category li:last-child').addClass('last');

});
