  jQuery.noConflict();
  jQuery(document).ready(function($) {
  	if ($('.innerfade5').size() > 0) {
		jQuery('.innerfade5').innerfade({
			speed: 100, timeout: 8000, type: 'sequence', animationtype: 'fade'
		});
	}
	
	if ($('.innerfade5a').size() > 0) {
		jQuery('.innerfade5a').innerfade({
			speed: 600, timeout: 5000, type: 'sequence', animationtype: 'fade'
		});
	}
	if ($('.peKenBurns').size() > 0) {
	  	jQuery(".peKenBurns").peKenburnsSlider();
	//	jQuery('.peKenBurns .peKb_controlsInner,.peKenBurns .peKb_timer').animate({'opacity': 1},100);
		jQuery(".peKenBurns").hover(function(){
					//	jQuery(".peKenBurns .peKb_controlsInner,.peKenBurns .peKb_timer").stop(true, false).animate({opacity:1},"medium");
					},function(){
						//jQuery(".peKenBurns .peKb_controlsInner,.peKenBurns .peKb_timer").stop(true, false).animate({opacity:0.7},"medium");
					},555);
	
	  	jQuery('.it-list a.ttl').live('mouseover', function(){
	  		if (jQuery(this).parent().hasClass('ac')) {
			  
			} else {
		  		jQuery('li.ac p, li.ac img', $(this).parent().parent()).hide();
		  		jQuery('.ac', $(this).parent().parent()).removeClass('ac');
		  		jQuery('p, img', $(this).parent()).fadeIn(500);
		  		jQuery(this).parent().addClass('ac');
			}
		});
	}
	
	
	// Menu General
	if ($('.classic-menu li').size() > 0) {
		$('.classic-menu li').hover(function(){
			$('.classic-smenu', $(this)).stop(true, false).show();
			$('a', $(this)).addClass('act');
		},function(){
			$('.classic-smenu', $(this).parent()).stop(true, false).hide();
			$('a', $(this)).removeClass('act');
		},555);
		
		
		
	}
	
  });
