	/*
*   SIDJA SiteEngine R3.5b
*	©2004-2006 SIDJA.  ALL RIGHTS RESERVED.
*	
*
*	Usage of this application requires that 
*	this header remain intact, and that the
*	Contents of this file are not modified 
*	in any way. You may not use this code
*	to create any derivite work without 
*	the express written consent of SIDJA.
*	Other restrictions apply. See the License
*	file in this directory for more license terms.
*
*/ 
	
	
	
	
	// 
	//		Future Use: We could have the slider buttons onClick move the element down by X number of pixels,
	//					as well as having the slider handle work.
	//
	





// ---------------------------------------------//
//
// 			this should look like 


		//function fadeIn(aniObj, opac, speed)
		
//		
//		
//		when it goes into a file




function fadeIn(aniObj){
	/*
	//	(c) SIDJA 2006
	//	ALL RIGHTS RESERVED.
	//
	//	Example Code:
	animPic = new SIDJA.util.Anim('sliderContent', {top: {to: -actualValue}}, 1, SIDJA.util.Easing.easeOut);
				animPic.animate()	
	*/
	
	

	/*		
	opacAnimObj = new SIDJA.util.Anim('aniBox', {opacity: 
		{to: 0}}, 2, SIDJA.util.Easing.easeOut);
	*///v2 of above
	opacAnimObj = new SIDJA.util.Anim(aniObj, {opacity: 
		{to: 1}}, .3);
				
	opacAnimObj.animate();
	}


function fadeOut(aniObj){
	/*
	//	(c) SIDJA 2006
	//	ALL RIGHTS RESERVED.
	//
	//	Example Code:
	animPic = new SIDJA.util.Anim('sliderContent', {top: {to: -actualValue}}, 1, SIDJA.util.Easing.easeOut);
				animPic.animate()	
	*/
	
	

	/*		
	opacAnimObj = new SIDJA.util.Anim('aniBox', {opacity: 
		{to: 0}}, 2, SIDJA.util.Easing.easeOut);
	*///v2 of above
	opacAnimObj2 = new SIDJA.util.Anim(aniObj, {opacity: 
		{to: .3}}, .3);
				
	opacAnimObj2.animate();
	}






function autoShowHide(aniObj, aw, ah, ao, aspeed){//, aeasing){
	/*
	//	(c) SIDJA 2006
	//	ALL RIGHTS RESERVED.
	//
	//	Example:
	animPic = new SIDJA.util.Anim('sliderContent', {top: {to: -actualValue}}, 1, SIDJA.util.Easing.easeOut);
				animPic.animate()	
	*/
	
	
	
	autoObj = new SIDJA.util.Anim(aniObj, {
   	  width: {to: aw}, 
      height: {to: ah},
	  opacity: {to: ao}
		
		}, aspeed); //, SIDJA.util.Easing.easeOut);
				
				
					
	autoObj.animate();
	
	
	
	}
	
	
	
	
	
///// */
	


function growMe(growingObj, gw, gh, gspeed) {

	thisGrow = new SIDJA.util.Anim(growingObj, {width: {to:gw}, height: {to:gh}}, gspeed, SIDJA.util.Easing.easeBoth); 
	thisGrow.animate();


};


function shrinkMe(shrinkingObj, sw, sh, sspeed) {

	thisShrink = new SIDJA.util.Anim(shrinkingObj, {width: {to:sw}, height: {to:sh}}, sspeed, SIDJA.util.Easing.easeBoth); 
	thisShrink.animate();


};

