$(window).load(function(){
	$('.widget-container .adv').each(function(i) {
		var imgHeight = $(this).find('img').height();
		var img = $(this).html();
		var aHref = $(this).attr('href');
		
		$(this).wrap("<div class='widget-adv'></div>");
		$('<div class="img-wrapper">'+img+'</div>').insertBefore(this);
		$(this).parents('.widget-container').find(".widget-adv").append('<a href="'+aHref+'" class="m"><span>Read more</span><em></em></a>');
		$(this).parents('.widget-container').find(".widget-adv, .widget-adv .m").height(imgHeight+34);
		$(this).parents('.widget-container').find(".widget-adv .m span, .widget-adv .m em").height((imgHeight/2)+17);
		$(this).remove();
	});
});

$(window).load(function(){
	$('.reply a').each(function() {
		var link = $(this).text();
		$(this).html('<span>'+link+'</span>');
	});
});
$(window).load(function(){
	var content = $('#container').height();
	var sidebar = $('.widget-area').height()+12;
	if(content<sidebar){
		$('#footer').addClass('footer-1');
	}
});


$(window).load(function(){
	if ($("button").length > 0){
		if(!$.browser.ie){
			$("button").addClass('ie');
		}
	};
});
