jQuery(document).ready(function($) {
	$('#layer-content p img, .listing-photogallery img').each(function() {
		var caption = $(this).attr('title');
		if (caption != '') jQuery(this).wrap('<span class="style-image"></span>').parent().append('<span class="style-title">'+caption+'</span>');
	});
	
	var iTotalGallery = 1;
	$('.listing-gallery').each(function() {
		$('img[src$=-200x200.jpg]', $(this)).each(function() {
			$(this).wrap('<a href="'+$(this).attr('src').replace('-200x200.jpg', '.jpg')+'" class="pirobox_gall"></a>');
		})
		++iTotalGallery;
	});

	$('a[href$=#chat]').click(function() {
		$_$.livechat.window.toggle();
		return false;
	});
	
	$('p:empty').remove();
});