$(document).ready(function() {
			$("a.meettheteam").fancybox({
				'transitionIn' : 'elastic',
				'transitionOut' : 'elastic',
				'titleShow' : false,
				'autoScale' : false,
				'scrolling' : 'no'
			});
			
			$("#rss").fancybox({
				'transitionIn' : 'fade',
				'transitionOut' : 'fade',
				'titleShow' : false
			});
			
			$("a#webtech").fancybox({
				'transitionIn' : 'fade',
				'transitionOut' : 'fade',
				'titleShow' : false
			});	
			
			$("#inschools_sideimage").jshowoff({
				speed: 4000,
				autoPlay: true,
				controls: false,
				hoverPause: false,
				links: false
			});
			
			$('#mce-EMAIL').click(function() {
				if($(this).attr('value') == 'Enter your email') {
					$(this).attr('value', '');
					$(this).css({'color' : '#066593'});
				}
			}).focusout(function() {
				if($(this).attr('value') == '') {
					$(this).attr('value', 'Enter your email');
					$(this).css({'color' : '#8dc63f'});
				}
			});
			
			$('#ie6').width = $(window).width();
			$('#ie6').height = $(window).height();
		});
