// JavaScript Document

		window.addEvent('domready', function(){
			//-vertical
			
			$('image1Link').style.color='#cc6600'
			/* PAGE SLIDER*/
			var mySlide = new Fx.Styles('flyout', {wait: false,transition: Fx.Transitions.Expo.easeInOut, duration:700} );
			
		
			
			$('slideout').addEvent('mouseenter', function(e){
				mySlide.start({
				top: [$('flyout').getStyle("top").toInt(), '91px'],
				height: [$('flyout').getStyle("height").toInt(), '250px']
			
				 
		});
		
			});
		
			
			
			
			$('slideout').addEvent('mouseleave', function(e){
				mySlide.start({
				top: [$('flyout').getStyle("top").toInt(), '350px'],
				height: [$('flyout').getStyle("height").toInt(), '0px']
			
				 
		});
			});
			
			$('flyout').addEvent('mouseenter', function(e){
				mySlide.start({
				top: [$('flyout').getStyle("top").toInt(), '91px'],
				height: [$('flyout').getStyle("height").toInt(), '250px']
			
				 
		});
		
			});
		
			
			
			
			$('flyout').addEvent('mouseleave', function(e){
				mySlide.start({
				top: [$('flyout').getStyle("top").toInt(), '350px'],
				height: [$('flyout').getStyle("height").toInt(), '0px']
			
				 
		});
			});
			
			/*Animated banner */
			var current  = 2
			var periodical
			var timer = 7; 
			var refresh = (function() {					
			var newCurrent = current++
			if(newCurrent > 3){
			newCurrent = 1
			current = 2
			}
			show(newCurrent)
			}); 
			
	periodical = refresh.periodical(timer * 1000, this); 
			
		}); 
		
	
			var show = function (whichOne){
			current = whichOne+1
	if(whichOne == 1){
		tDiv = "imageHolder1";
		vDiv = "imageHolder2";
		xDiv = "imageHolder3";
orangeNum = "image1Link"
blueNum = "image2Link"
blueNum2 = "image3Link"
$('textToChange').innerHTML = 'Learn More'
$('linkToChange').href = "http://www.officesuitesplus.com/services.php/professional_office_package"}else if(whichOne == 2){
		tDiv = "imageHolder2";
		vDiv = "imageHolder1";
		xDiv = "imageHolder3";
orangeNum = "image2Link"
blueNum = "image1Link"
blueNum2 = "image3Link"
$('textToChange').innerHTML = 'Learn More' 
$('linkToChange').href = "http://www.officesuitesplus.com/services.php/professional_image_package"}else{
		tDiv = "imageHolder3";
		vDiv = "imageHolder1";
		xDiv = "imageHolder2";
orangeNum = "image3Link"
blueNum = "image2Link"
blueNum2 = "image1Link"
$('textToChange').innerHTML = 'View Locations'
$('linkToChange').href = "http://www.officesuitesplus.com/location.php/"}
	if($(tDiv).fx){$(tDiv).fx.stop();}
	if($(vDiv).fx){$(vDiv).fx.stop();}
	if($(xDiv).fx){$(xDiv).fx.stop();}
	$(tDiv).fx = $(tDiv).effect('opacity', {duration: 1000,transition: Fx.Transitions.Expo.easeInOut}).start(1);
	$(vDiv).fx = $(vDiv).effect('opacity', {duration: 1000,transition: Fx.Transitions.Expo.easeInOut}).start(0);
	$(xDiv).fx = $(xDiv).effect('opacity', {duration: 1000,transition: Fx.Transitions.Expo.easeInOut}).start(0);	
$(orangeNum).style.color='#cc6600'
$(blueNum).style.color='#1c2f67'
$(blueNum2).style.color='#1c2f67'

}
		
	