	 jQuery.noConflict(); // Use jQuery via jQuery(...)
		jQuery(document).ready(function(){	//on document load
			//jquery cycle for banners
			jQuery('.subnav .rotator').cycle({ 
				fx:     'fade', 
				speed:  '1000', 
				timeout: 5000
			});
			
			//menu drop-up
			jQuery('.menu-background > ul > li').mouseenter(function(){
				jQuery(this).append('<div class="overlay"></div>');
				jQuery('div.overlay', this).fadeTo(0, 0.5);
				jQuery('div.level2', this).stop(true,true).show(400);
			});	
			jQuery('.menu li').mouseleave(function(){
				jQuery('div.overlay', this).remove();
				jQuery('div.level2', this).stop(true,true);
				jQuery('div.level2', this).hide();
			});
			
			
			//Home subnav animations
			
			jQuery('.subnav.home .button1').mouseenter(function(){
				jQuery('.title', this).stop(true).animate({
					top: '25px',
					width: '137px',
					left: '33px'
				}, 200);
				jQuery('.arrow', this).stop(true).animate({
					width: '25px',
					height: '40px',
					top: '120px',
					left: '165px'
				}, 200);
				jQuery('.text', this).stop(true).delay(200).fadeTo(100,1);
			});
			
			jQuery('.subnav.home .button1').mouseleave(function(){
				jQuery('.title', this).stop(true).animate({
					top: '125px',
					width: '125px',
					left: '45px'
				}, 200);
				jQuery('.arrow', this).stop(true).animate({
					width: '12px',
					height: '19px',
					top: '25px',
					left: '175px'
				}, 200);
				jQuery('.text', this).stop(true).hide();
			});
			
			jQuery('.subnav.home .button2').mouseenter(function(){
				jQuery('.title', this).stop(true).animate({
					top: '30px',
					width: '153px'
				}, 200);
				jQuery('.arrow', this).stop(true).animate({
					width: '25px',
					height: '40px',
					top: '120px',
					left: '165px'
				}, 200);
				jQuery('.text', this).stop(true).delay(200).fadeTo(100,1);
			});
			
			jQuery('.subnav.home .button2').mouseleave(function(){
				jQuery('.title', this).stop(true).animate({
					top: '125px',
					width: '140px'
				}, 200);
				jQuery('.arrow', this).stop(true).animate({
					width: '12px',
					height: '19px',
					top: '25px',
					left: '175px'
				}, 200);
				jQuery('.text', this).stop(true).hide();
			});
			
			jQuery('.subnav.home .button3').mouseenter(function(){
				jQuery('.title', this).stop(true).animate({
					top: '25px',
					width: '123px'
				}, 200);
				jQuery('.arrow', this).stop(true).animate({
					width: '25px',
					height: '40px',
					top: '120px',
					left: '165px'
				}, 200);
				jQuery('.text', this).stop(true).delay(200).fadeTo(100,1);
			});
			
			jQuery('.subnav.home .button3').mouseleave(function(){
				jQuery('.title', this).stop(true).animate({
					top: '130px',
					width: '110px'
				}, 200);
				jQuery('.arrow', this).stop(true).animate({
					width: '12px',
					height: '19px',
					top: '25px',
					left: '175px'
				}, 200);
				jQuery('.text', this).stop(true).hide();
			});
						
		});
