/* NAV FUNCTIONS
-----------------------------------------------------*/
(function($) {
	$(document).ready(function() {
		$('.preview').find('a').each(function(i) {
			$(this).click(function() {
				$(this).lightbox.start(this);
				return false;
			});									  
		});
		if($('.news-item').length>1) {
			$('.news-item').each(function() { 
				var h = $(this).attr('offsetHeight');
				$(this).css({ height:'115px' });
				$('<div id="more"></div>').appendTo(this).click(function() {  
					if($(this).parent().css('height')=='115px') $(this).css({ background:'transparent url(styles/images/bg-more.jpg) 0 32px' }).parent().animate({ height:h });
					else $(this).css({ background:'transparent url(styles/images/bg-more.jpg) top left' }).parent().animate({ height:'115px' });
				}); 
			});
		}
	});
})(jQuery);