$(function(){
	$("li.round_top").corner("tl tr");
	$("li.round_bottom").corner("bl br");
	$("div.round").corner();
	$("div.round_bottom").corner("bl br");
	$("div.round_top").corner("tl tr");
	$("div.round_bottom").corner("bl br");
	$("div.round_top_right").corner("tr");
});

$(document).ready(function() {		
	var options = {
		newsList: "#news_headlines",
		startDelay: 10,
		placeHolder1: " #"
	}
	$().newsTicker(options);
									
});

<!--//
function moveLayer(whichLayer, position)
{
var elem, vis;
if( document.getElementById ) // this is the way the standards work
	elem = document.getElementById( whichLayer );
else if( document.all ) // this is the way old msie versions work
	elem = document.all[whichLayer];
else if( document.layers ) // this is the way nn4 works
	elem = document.layers[whichLayer];
vis = elem.style;
vis.left = position +"px";;
}

function showLayer(whichLayer)
{
var elem, vis;
if( document.getElementById ) // this is the way the standards work
	elem = document.getElementById( whichLayer );
else if( document.all ) // this is the way old msie versions work
	elem = document.all[whichLayer];
else if( document.layers ) // this is the way nn4 works
	elem = document.layers[whichLayer];
vis = elem.style;
vis.display = 'block';
}
function hideLayer(whichLayer)
{
var elem, vis;
if( document.getElementById ) // this is the way the standards work
	elem = document.getElementById( whichLayer );
else if( document.all ) // this is the way old msie versions work
	elem = document.all[whichLayer];
else if( document.layers ) // this is the way nn4 works
	elem = document.layers[whichLayer];
vis = elem.style;
vis.display = 'none';
}
//-->
function moveArrow(leftValue){
var elem, vis;
if( document.getElementById ) // this is the way the standards work
	elem = document.getElementById('orange_arrow');
else if( document.all ) // this is the way old msie versions work
	elem = document.all['orange_arrow'];
else if( document.layers ) // this is the way nn4 works
	elem = document.layers['orange_arrow'];
vis = elem.style;

vis.paddingLeft=leftValue+'px';			
}

function waitAWhile(){
	showLayer("ticker");
}
function showSearchBar(){
	showLayer('sentence');
	hideLayer('sentence_industry');
	hideLayer('sentence_interest');
	hideLayer('sentence_career');
	moveArrow(0);
	makeOrange('sentence_industry_link');
	makeOrange('sentence_interest_link');
	makeOrange('sentence_career_link');
}
function industry(){
	showLayer('sentence_industry');
	hideLayer('sentence');
	hideLayer('sentence_interest');
	hideLayer('sentence_career');
	moveArrow(255);
	makeBlack('sentence_industry_link');
	makeOrange('sentence_interest_link');
	makeOrange('sentence_career_link');
}
function interest(){
	showLayer('sentence_interest');
	hideLayer('sentence');
	hideLayer('sentence_industry');
	hideLayer('sentence_career');
	moveArrow(140);
	makeBlack('sentence_interest_link');
	makeOrange('sentence_industry_link');
	makeOrange('sentence_career_link');
}
function career(){
	showLayer('sentence_career');
	hideLayer('sentence');
	hideLayer('sentence_industry');
	hideLayer('sentence_interest');
	moveArrow(360);
	makeBlack('sentence_career_link');
	makeOrange('sentence_industry_link');
	makeOrange('sentence_interest_link');
}
function makeBlack(whichLink){
	var elem, vis;
	if( document.getElementById ) // this is the way the standards work
		elem = document.getElementById(whichLink);
	else if( document.all ) // this is the way old msie versions work
		elem = document.all[whichLink];
	else if( document.layers ) // this is the way nn4 works
		elem = document.layers[whichLink];
	vis = elem.style;
	vis.color = '#000000';
}
function makeOrange(whichLink){
	var elem, vis;
	if( document.getElementById ) // this is the way the standards work
		elem = document.getElementById(whichLink);
	else if( document.all ) // this is the way old msie versions work
		elem = document.all[whichLink];
	else if( document.layers ) // this is the way nn4 works
		elem = document.layers[whichLink];
	vis = elem.style;
	vis.color = '#FF9900';
}