jQuery(document).ready(function($){


/*--- [start] equal height columns with jquery---*/
function equalHeight(group) {
	var tallest = 0;
	group.each(function() {
		var thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}

$(document).ready(function() {
	equalHeight($('div.mt_global div.mt'));
	equalHeight($('div.sv'));
	equalHeight($('div.ot'));
});
/*--- [end] equal height columns with jquery---*/


function equalWidth(group) {
	var tallest = 0;
	group.each(function() {
		var thisWidth = $(this).width();
		if(thisWidth > tallest) {
			tallest = thisWidth;
		}
	});
	group.width(tallest);
}
$(document).ready(function() {
	equalWidth($('div.post_left'));
});



$('div.post_right').each(function(){
    var postpad = $('div.post_left').width();
	$(this).css('padding-left', postpad+10);
});



$('div.paging ul li').hover(function(){
	$(this).addClass('hover')}, function(){
		$(this).removeClass('hover');
	});
















































});
