(function($){ 
	$(function(){
		var $one = $('#headlineNav #one').attr('href');
		$('#more').attr('href',$one);
		// Opacity
		$('#headline #headlineNav').css({
			'opacity':'0.95'
		});
		// Click Event
		$('#headline #headlineNav li a').click(function(){
			$('#headline #headlineNav li a').removeClass('active');
			$(this).addClass('active');
			var $href = $(this).attr('href');
			if ($(this).attr('id') == 'one') {
				$('#headline ul#scrollingImages').animate({
					marginLeft: '0'
				});
			} else if ($(this).attr('id') == 'two') {
				$('#headline ul#scrollingImages').animate({
					marginLeft: '-900px'
				});
			} else if ($(this).attr('id') == 'three') {
				$('#headline ul#scrollingImages').animate({
					marginLeft: '-1800px'
				});
			} else {
				$('#headline ul#scrollingImages').animate({
					marginLeft: '-2700px'
				});
			}
			$('#more').attr('href',$href);
			return false;
		});
	});
})(jQuery);