$(document).ready(function(){

	// External Window Links
	$('a.new-window').click(function(){
		window.open(this.href);
		return false;
	});

	// Center Image Positioning
	$('img.centerImage').each( function() {
		$(this).parent('p').next().css("margin-top",$(this).height() + "px");
		$(this).parent('p').css('text-align','center');
		$(this).parent('p').css('height',$(this).height() + "px");
		$(this).parent('p').css('width',$(this).width() + "px");
		$(this).parent('p').css('overflow','visible');
		$(this).parent('p').css('position','absolute');
		$(this).parent('p').css('left','0px');
		$(this).parent('p').css('background','url("' + $(this).attr("src") + '") no-repeat top left');
		$(this).remove();

    });

	// Video Link
	$('a.video-link').click(function(){
window.open(this.href,"_blank","width=970,height=570,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0");
		return false;
	});

	// Adjust Footer Wrapper Size to fit any extended content
//	alert("Test: " + $("body").width());
//	$("footerWrapper").css('width',$("body").width() + 'px');


	// Footer Top Link
//	$("a[href='#top']").click(function() {
//  		$("html").animate({ scrollTop: 0 }, "slow");
//  		return false;
//	});

	//White Hover Dot
	$("a.dotPink").hover(
		function(){
			$(this).children("img").attr('src','/images/global/circle-white.gif');
		},
		function(){
			$(this).children("img").attr('src','/images/global/circle-pink.gif');
		}
	); 
	
	$("a.dotGreen").hover(
		function(){
			$(this).children("img").attr('src','/images/global/circle-white.gif');
		},
		function(){
			$(this).children("img").attr('src','/images/global/circle-green.gif');
		}
	); 
	
	$("a.dotBlue").hover(
		function(){
			$(this).children("img").attr('src','/images/global/circle-white.gif');
		},
		function(){
			$(this).children("img").attr('src','/images/global/circle-blue.gif');
		}
	); 

});
