/* NSB CAMBS */
$(function()
{
	if ($('#cyclewrapper').is('div'))
	{
		$('#cyclewrapper .images').cycle(
		{
			timeout:	4000,
			speed:		1000,
			delay:		-1000
		});
	}

	$('#nav ul').hide().css('top','29px');
	
	$('#nav > li').hover
	(
		function()
		{
			$(this).children('ul').fadeIn('fast');
		},
		function()
		{
			$(this).children('ul').fadeOut('fast');
		}
	);
	
	$('a[rel=external]').attr('target','_blank');
	
	$("form.jqtransform").jqTransform();

});

