function highlight_thumb()
{
	
}

function clear_thumb()
{
	
}

function load_cloth_pictures(garmentId)
{
	jQuery("#cloth_description").html('');
	jQuery("#cloth_description").load("/parents/" + garmentId + "/cloth_desc");
	jQuery("#cloth_pictures").html('<div style="text-align:center;"><img src="/images/parents/loading.gif" /></div>');
	jQuery("#cloth_pictures").load("/parents/" + garmentId + "/cloth_pic");
	
}

function media_comment_more(no)
{
	jQuery("#media_comment_less"+no).hide();
	jQuery("#media_comment_more"+no).show();	
}

function media_comment_less(no)
{
	jQuery("#media_comment_more"+no).hide();
	jQuery("#media_comment_less"+no).show();	
}