$(document).ready(function(){
	$('.listingitem h2').corner({bl:false,br:false});
	
	// news items
	$(document).find('div.newsitem').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;
		})
	})
	
	// 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;
		})
	})
	
	// archive dropdown
	$('#NewsYear').change(function(obj) {
		document.location = "/the-restaurant/news/"+$(this).val();
		return false;
	})
	
	$('#Gallery a').lightBox();
	$(document).pngFix();
});