	jQuery.noConflict();
	
	jQuery(function() {
		
		jQuery('#nav').superfish(); 
		
		var current_opacity=0;
		jQuery(".homecontent").css({ opacity: 0.7 });
		jQuery(".homecontent").mouseover(function() { 

				jQuery(this).stop().fadeTo(400,1);
			
		});
		jQuery(".homecontent").mouseout(function() { 
			
				jQuery(this).stop().fadeTo(400,0.7);

		});
		
    var hoverEffect=function () {
			jQuery("img.a").hover(
			function() {
			jQuery(this).stop().animate({"opacity": "0"}, "slow");
			},
			function() {
			jQuery(this).stop().animate({"opacity": "1"}, "slow");
			});
		};
		
		hoverEffect();
		
    jQuery(".holder").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
        auto: 1200,
        speed: 1500,
        visible: 4,
        afterEnd: function (a) { hoverEffect(); }
    });
     
    jQuery('#box5').cycle({
			fx: 'fade',
			pager:  '#handles' 
		});
	
});

