$(document).ready(function(){
	$("span.more").click(function(){
		if ($(this).parent().children("p.work-full-info").html() != null) {
			if ($(this).parent().children("p.work-full-info").css("display") == "none") {
				$(this).text("- Collapse / less info");
				$(this).parent().children("p.work-full-info").slideDown().fadeTo("normal",1);
				$(this).parent().children("p.work-more-img").load("more_images.php", {handler: $(this).parent("div.post").attr("id")}, function(){
					$(this).slideDown();
				}); 
			}
			else {
				$(this).text("+ Expand / more info");
				$(this).parent().children("p.work-full-info").slideUp().fadeTo("normal",1);
				$(this).parent().children("p.work-more-img").slideUp();
			}
		}
		else {

			$(this).text("- Collapse / less info");
			if ($(this).parent().children("p.work-more-img").css("display") == "none") {
				$(this).parent().children("p.work-more-img").load("more_images.php", {handler: $(this).parent("div.post").attr("id")}, function(){
					$(this).slideDown();
				}); 
			}
			else {
				$(this).text("+ Expand / more info");
				$(this).parent().children("p.work-more-img").slideUp();
			}
		}
   	});
});
