
$(document).ready(function() {

	//$('#s1').cycle();


	$('#s1').cycle({
    fx:     'scrollHorz',
    speed:  'slow',
    timeout: 5000,
    next:   '#next2',
    prev:   '#prev2'
	});

	$('hr').wrap('<div class="hr" />');

	/* Search Page */
//	$('.the_map').hide();

	$('#the_results li').each(function() {
		var SearchItem = this;
		$('.map a', this).click(function() {
			$(this).parents('li').toggleClass('open');
			$('.the_map', SearchItem).slideToggle();
			return false;
		});
		$('.hide_me', this).click(function() {
			$('.map a', SearchItem).trigger('click');
			return false;
		});
	});

	$('#joinnewsletter').click(function(e) {
		e.preventDefault();
		$('#newsletter-signup').slideToggle();
	});

	var label = 'Email address';
	$('#newsletter-signup .input input').val(label);
	$('#newsletter-signup .input input').click(function() {
		if ($(this).val() == label) {
      $(this).val('');
    }
    $(this).blur(function() {
      if ($(this).val() == '') {
        $(this).val(label);
      }
    });
	});

});


$(document).ready(function(){

$('.news-archive li:nth-child(3n+3)').addClass('thethirdlis');

$('.news-archive li:nth-child(3n+1)').addClass('thefirstlis');

$('.rightpanel li a').hover(function(){



	$(this).find('.dash').show();

	//$('.tooltip').stop(true, true).fadeIn(1000);

	$(this).parent().find('.tooltip').show();

}, function(){

	$(this).find('.dash').hide();

	$(this).parent().find('.tooltip').hide();

});



$('#Main_navbar li a').not(':last').each(function(){

$(this).append('&nbsp;&nbsp;<span class="navsplitter">|</span>');

});

$('#footernav li a').not(':last').each(function(){

$(this).append('&nbsp;&nbsp;&nbsp;&nbsp;<span class="navsplitter">|</span>');

});



$('.moreinfohidden').hide();

$('.moreinformation').click(function(){

	$('.moreinfohidden').slideToggle();

});

$('.portalcontainer').hover(function(){

	//var theportal = $(this);

	//theportal.find('hr').stop().fadeOut(222);

	$(this).find('h2').stop(true, true).hide();

	$(this).find('.readmore').show();

	//$(this).find('h2').stop(true, true).fadeOut('300');

	$(this).find('.aportal').stop().animate({

	marginTop: "-120px",

	height: "250px"

	}, 600, function(){

		//$(this).parent().find('.readmore').stop(true, true).fadeIn('600');

	});

	//$(this).find('.summarytext').delay(2000).stop(true, true).fadeIn(400).slideDown(1400);

	$(this).find('.aportal').find('.summarytext').delay(3000).stop(true, true).animate({
	"height": "100%", "opacity": 1
	}, 1000);


	$('#banner').stop().animate({

	opacity: 0.5

	}, 600);






}, function(){

	//var theportal = $(this);

	$(this).find('.readmore').hide();

	$(this).find('h2').show();

	//$(this).find('.readmore').stop(true, true).fadeOut('300');

 	$(this).find('.aportal').stop().animate({

	marginTop: "0px",

	height: "130px"

	}, 600, function(){

	//theportal.find('hr').stop().fadeIn(1022);

		//$(this).parent().find('h2').stop(true, true).fadeIn('600');


	});

	//$(this).find('.summarytext').delay(2000).stop(true, true).fadeOut(400).slideUp(1400);

	//delay(0).



	$(this).find('.aportal').find('.summarytext').stop(true, true).animate({
	"height": 0, "opacity": 0
	}, 1000);


	$('#banner').stop().animate({

	opacity: 1

	}, 600);


});

});

	/* Search Page */

