$(document).ready(function() { 
   
        $('.gallery a').lightBox();   
        
        /*CAROUSEL*/
        $('#promoCarousel').cycle({
                fx:      'fade',
                speed:    2000, 
                timeout:  5000,
                prev:    '#prev',
                next:    '#next',
                cleartype:  true,
                cleartypeNoBg:  true
        }); 
        
        /*ARROW TOP*/
        $('.arrowUp').click(function() {;
		$('html, body').animate({scrollTop:0}, 'slow');
		return false;
	});                     

        /*ACCORDION*/   
        $('.box .plusMinus').click(function() {    
                if(!$(this).is('.plusMinusOpened')) {            
                        $('.boxIn').hide('slow');
                                                
                        $(this).next('.boxIn').show('slow');                        
        
                        $('.box .plusMinus').removeClass('plusMinusOpened');
                        $('.box').removeClass('boxActive');  

                        $(this).addClass('plusMinusOpened');                            
                        $(this).parent().addClass('boxActive'); 

                }else{
                        $('.box .plusMinus').removeClass('plusMinusOpened');
                        $('.box').removeClass('boxActive');  
                        $(this).next('.boxIn').hide('slow');                        
                        
                        return false;                
                };
                return false;
        });         
               	
                       	
});

