$(function (){var angle=360;setInterval(function(){angle+=1;$('.brandstar').rotate(angle);},5);});
$(function(){setTimeout(function(){$(".masuper").animate({top:0},200,function(){$(".macomp").css("visibility","visible")});},3000);$(".dldiv img").animate({top:0},1000,function(){$(".dldiv img").animate({top:-10},200);});$(".brandicon").animate({top:-113},500,function(){$(".brandchain").animate({top:-43},500,function(){$(".brandstar").css("visibility","visible");});});});


$(document).ready(function(){
	$('#careerhead').rotate({angle:355});
	$('.careerheadguy').animate({top:10},1000);
});



$(document).ready(function(){
	$('.services').cycle({
		fx:'fade',
		speed:300,
		timeout:8000
	});
	$('#goto1').click(function() { 
    	$('.services').cycle(0); 
    	return false; 
	}); 
	$('#goto2').click(function() {  
		$('.services').cycle(1);  
		return false;  
	});
	$('#goto3').click(function() {  
		$('.services').cycle(2);  
		return false;  
	});
});
$(document).ready(function(){
	$('.rotater div').cycle({
		fx:'fade',
		speed:500,
		timeout:5000,
		next:'#next', 
    	prev:'#prev'
	});
	$('.wldiv').cycle({
		fx:'fade',
		timeout:7000,
		speed:500,
		pause:1
	});
	$('.workleft').cycle({
		fx:'fade',
		timeout:7000,
		speed:500,
		pause:1
	});
});




<!--//--><![CDATA[//><!--
startListtwo = function() {
	if (document.all&&document.getElementById) {
		
		navRootone = document.getElementById('menu-dropdown');
		
		for (e=0; e<navRootone.childNodes.length; e++) {
			nodeone = navRootone.childNodes[e];
			if (nodeone.nodeName=="LI") {
				nodeone.onmouseover=function() {
					this.className+=" over";
				}
				nodeone.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
	if (document.all&&document.getElementById) {
		
		navRoottwo = document.getElementById('menu-topmenu');
		
		for (i=0; i<navRoottwo.childNodes.length; i++) {
			nodetwo = navRoottwo.childNodes[i];
			if (nodetwo.nodeName=="LI") {
				nodetwo.onmouseover=function() {
					this.className+=" overtwo";
				}
				nodetwo.onmouseout=function() {
					this.className=this.className.replace(" overtwo", "");
				}
			}
		}
	}
}
window.onload=startListtwo;				  

//--><!]]>

var i = 0;
var x = 0;
var interval;
$(document).ready(function() {
    rotateseconds();
    rotateminutes();
    setInterval(rotateseconds, 10);
    setInterval(rotateminutes, 1000);
});

function rotateseconds() {
    var t = new Date();
    var r = t.getSeconds();
    
    var m = t.getMinutes();
    var h = t.getHours() % 12;
    $(".time").text(h + ":" + m + ":" + r);
    $("#min").rotate((m * 6) + (r * .1));

    r = ((r) * 1000) + t.getMilliseconds();
    r = r * 0.006;
    $("#sec").rotate(r);

}

function rotateminutes() {
    var t = new Date();
    var r = t.getMinutes();
    var h = t.getHours();

    h = h % 12;
    h = (h * 30) + (r * .5)
    $("#hrs").rotate(h);
}
