$(document).ready(function() {

  //FUNTION FOR MAIN NAVIGATION
  var mainMenuLink = $('a.main');
    
  mainMenuLink.click(function(event) {
    event.preventDefault();
    $('ul.main_nav_menu').css('display','none');
    $(this).toggleClass('active').parent().siblings().find('a.active').removeClass('active');
    if(mainMenuLink.hasClass('active')){
      $(this).next().css('display','block'); 
    }
    });
  
  //INITIALIZE FANCYBOX   
  $('a.fancy').fancybox();
  
  $("#various3").fancybox({
			'width'				: '100%',
			'height'			: '100%',
			'autoScale'			: false,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'				: 'iframe'
		});
  
  //INITIALIZE CYCLE PLUGIN FOR SLIDESHOW
  
  $('div.slideshow').cycle({
    fx : 'fade',
    speed : 800,
    timeout : 6000,
    next : 'a#slideshow_trigger_next',
    prev : 'a#slideshow_trigger_prev'
  });
  
  // $('div#hover_area').live('mouseenter mouseleave', function(event) { 
  //   if (event.type == 'mouseenter') {
  //     $('#slideshow_trigger_next').animate( {"right": "-=26px"}, function() { $('.slideshow_trigger').addClass('active')} );
  //     $('#slideshow_trigger_prev').animate( {"left": "-=26px"} );
  //   } else {
  //    $('div#hover_area').die('mouseenter mouseleave');
  //   }
  // });
  
});


