$(document).ready(function(){

	$('#Gallery a').lightBox();

	$('.listingitem h2').corner({bl:false,br:false});
	
	// news items
	$(document).find('div.listingitem').each(function() {
		var full = $(this).find("div.full").hide();
		var intro = $(this).find("div.intro");
		$(this).find("p.read a").click(function() {
			$(full).toggle();
			$(intro).toggle();
			return false;
		})
	})
	
	$(document).pngFix();
});