$(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('layout-two')) {

		var $$ = $('.item-more');

		$$.hide();
		$$.prev().append('<a href="javascript:void(0);" class="open">Show more information <img src="images/bullet-down.jpg" alt="Click to read more" /></a>');
		$$.find('p:last').append('<br /><a href="javascript:void(0);" class="close">Close <img src="images/bullet-up.jpg" alt="Click when finished" /></a>');

		$('a.open').click(function() {
			$(this).hide();
			$(this).parent().next().slideDown();
		});
		
		$('a.close').click(function() {
			$(this).parent().parent().slideUp();
			$(this).parent().parent().prev().find('a.open').show();
		});
	} 

});

