$(function() {
	
	$('.jshide').hide();
	
	//messageflash
	$('#messageflash').hide();
	$('#messageflash').slideDown('slow').delay(5000).slideUp('slow');

	//homepage
	$('#homepageslideshow').cycle({
		fx: 'scrollUp, scrollDown, scrollUp ',  
		randomizeEffects: false,
		timeout: 12000,
		startingSlide: 0,
		pager: '#homepageslideshowctrls'
	});

	//news fancybox
	$(".teamimga").hover(
		function () {
		    $(this).children("img").hide();
		  }, 
		  function () {
		    $(this).children("img").show();
		  }		
	);

	//news fancybox
	$(".sideimages a").fancybox({
		'titlePosition': 'over',
		'autoScale': 'true',
		'cyclic': 'false',
		'showNavArrows': 'false'
	});
	
	//open links in a new window
	$('a[href^="http://"]').attr({
	    target: "_blank", 
	    title: "Opens in a new window"
	});


	$(".teammember h2 a").fancybox({'scrolling': 'no', 'titleShow': false, 'padding': 0});
	$("a.teamimga").fancybox({'scrolling': 'no', 'titleShow': false, 'padding': 0});
	
});
