$(function(){
	var $one = $('#headlineNav #one').attr('href');
	$('#more').attr('href',$one);
	// Opacity
	$('#headline #headlineNav').css({
		'opacity':'0.85'
	});
	// Click Event
	$('#headline #headlineNav li a').click(function(){
		var $href = $(this).attr('href');
		if ($(this).attr('id') == 'one') {
			$('#headline ul#content').animate({
				marginLeft: '0'
			});
		} else if ($(this).attr('id') == 'two') {
			$('#headline ul#content').animate({
				marginLeft: '-630px'
			});
		} else {
			$('#headline ul#content').animate({
				marginLeft: '-1260px'
			});
		}
		$('#more').attr('href',$href);
		return false;
	});
});