$(function(){

	// fix PNGs in IE
	if($.browser.msie && ($.browser.version.substr(0,2)=="5." || $.browser.version.substr(0,2)=="6.") ){
		$('img, .close').ifixpng();
	}
	
	//Expanding text
		if ($('body').hasClass('main')) {
		$('.item-more').hide().after('<p class="hook"><a href="javascript:void(0);" class="open">read more</a></p>');
		$('p.hook a').click(function() {
			if ($(this).text() == 'read more') {
				$(this).text('close');
				$(this).addClass('close');
				$(this).parent().prev().slideDown();
			}
			else {
				$(this).text('read more');
				$(this).removeClass('close');
				$(this).parent().prev().slideUp();
			}
		});
	}

});

