$(document).ready(function(){
	
	// MAIN NAVIGATION
	$('#mnv li').find('span').stop().fadeTo(0, 0);
	
	$('#mnv li').hover(
		function() {
			$(this).find('span').stop().fadeTo(200, 1);
		},
		function() {
			$(this).find('span').stop().fadeTo(200, 0);
		}
	);

	// PAGE SCROLLING
	$('.scroll').jScrollPane({scrollbarWidth:15, scrollbarMargin:14,dragMaxHeight:100,wheelSpeed:25});
	
	$('.box1,.box2,.box3,.box4').cycle({
		fx:     'fade',
		timeout: 20000
	});   
	
	$(function() {
			   
		// GALLERY
		$('#pause').click(function() { $('.gal_box').cycle('pause'); return false; });
		$('#play').click(function() { $('.gal_box').cycle('resume'); return false; });
		
		$('#slideshow').hover(
			function() { 
				$('#controls').toggle();
			},
			function() { 
				$('#controls').toggle();
			}
		);
		
		$('.gal_box').cycle({
			fx:     'fade',
			speed:   400,
			timeout: 3000,
			next:   '#next',
			prev:   '#prev',
			pause: 3
		});
		
		// QUOTES IN THE HEADER
		$('.txt_l_index').cycle({
			fx:     'fade',
			speed:   1400,
			timeout: 7000,
			next:   '.txt_l_index',
			pause: 3
		});
		
		$('.txt_r_index').cycle({
			fx:     'fade',
			speed:   1400,
			timeout: 9800,
			next:   '.txt_r_index',
			pause: 3
		});
		
	});

	//teaser for the homepage image
	$('.teaser').hover(function() {
	  // over
		$(this).children('img').stop().animate({
			left : '0px',
			bottom : '-380px'
		}, 500);
	}, 
	function() {
	  // out	
		$(this).children('img').stop().animate({
			bottom : '0',
			left :'0'
		}, 500);
	});

});