$(document).ready(function(){
	initSlides();
});
/*--- Upload function ---*/
function initSlides(){
	$('.description').css('height', '39px');
	$('.more').click(function(){
		_this = $(this);  
		if ($(this).hasClass('open')) {
			$(this).prev().animate({height : 39}, 400);
			$(this).text('read more');
		}
		else {
			$(this).prev().animate({height : _this.prev().find('.text').height()}, 400);
			$(this).text('show less');
		}
		$(this).toggleClass('open');
		return false;
	});
}

function initSlides_image(id)
{	
	var desDiv = $('#description'+ id); 
	var morDiv = $('#more'+ id); 
	
	if ($(morDiv).hasClass('open')) 
	{
		desDiv.animate({height : 39}, 400);
		$(morDiv).text('read more');
	}
	else 
	{
		desDiv.animate({height : desDiv.find('.text').height()}, 400);
		$(morDiv).text('show less');
	}
	$(morDiv).toggleClass('open');
	return false;
}
