/**************************************************
 *	news.js
 *
 *	News page functions, using JQuery 1.2.6
 *	@author	:	A.Surrey (azure design)
 */
 
/**
 *	When document loads
 */
$(document).ready(function()
			{
				/**
				 *	Hide all but first box
				 */
				$(".news-list-box > .newsContentBox:not(:first)").hide();
				/**
				 *	Add Lightbox
				 */
				$(function() 
				{
					$('a.newsImLg').lightBox();
				});
				/**
				 *	On click of heading, toggle storey
				 */
				$(".news-list-box > .newsContentBox:not(:first)").parent().children("h2").click(
							function()
							{
								$(this).parent().children(".newsContentBox").toggle("slow");
								return false; // Don't follow link
							});
				
				
			});// Dom ready
