function toggleVideos()	{
	slideWidth = parseInt($('#masthead-slider').css('width').replace('px', ''));

	if (slideWidth > 10)	{
		$('#masthead-slider div').css('display', 'none');
		$('#masthead-slider a#trigger').css('background', 'url("images/slider-trigger-active.png") no-repeat scroll 0 0 transparent');
		$('#masthead-slider').animate({	width : '10px'}, 200);
	}else{
		$('#masthead-slider').animate({	width : mastheadSliderWidth + 'px'}, 200);	// Width var is rendered into the page
		$('#masthead-slider a#trigger').css('background', 'url("images/slider-trigger.png") no-repeat scroll 0 0 transparent');
		$('#masthead-slider div').css('display', 'block');
	}
}  
