/* FILE: main.js CREATED: 08-09-2012 MODIFIED: 08-15-2012 */ // jQuery functions $(document).ready(function() { /* This takes the URL of the page being viewed and applies it as a class to the 'headline' div, which allows for the differently-colored headlines (applied via the "strong" tag). */ var pageurl = window.location.href.split('/'); var pagetitle = pageurl[pageurl.length - 1].split('.'); if( pagetitle[0] == '' ) { pagetitle[0] = 'home'; } $('.headline-text').addClass('headline-' + pagetitle[0].toLowerCase()); /* Easy text rotation on the main page */ if( $('#rotator').length > 0 ) { $('.rotator-slide:eq(1)').css('left', '826px'); function slideone() { $('.rotator-slide:eq(0)').animate({ 'left': '-825px' }, 1000, 'swing'); $('.rotator-slide:eq(1)').animate({ 'left': '35px' }, 1000, 'swing'); } setTimeout(slideone, 3000); } }); // Non-jQuery functions