$(document).ready(function(){
						   
	// Show and Hide Work
	$('.more-content').hide();
	$('.properties input').toggle(
		function () {
			$(this).parents('.properties').find('.more-content').slideDown();
			$(this).removeClass('read-more');
			$(this).addClass('close');
        },
        function () {
        	$(this).parents('.properties').find('.more-content').slideUp();
			$(this).removeClass('close');
			$(this).addClass('read-more');
      	}
    );
	
	//change images
	$("ul.thb-gallery li a").click( function(){
		im = $(this).find("img").attr("src");
		im = im.replace("-thb.",".");
		$(this).parents("div.properties").find("img.prop-thbs").attr("src",im);
    });

});
