jQuery(document).ready(function($) {

	$('#pageimage').hide().fadeTo(2000, 1);
	
	$('.gallery-item a').hide().fadeTo(2000, 0.5);
	
	$('.gallery-item a').hover(
		function() {
			$(this).stop().fadeTo(250, 1);
			},
		function() {
			$(this).stop().fadeTo(250, 0.5);
		});

	$('a.newsletterlink, .newsletterlink a').colorbox({width:"90%", height:"90%", iframe:true});

});
