	// jQuery calls
	
	$(function() {
		$('.arrow-list a').click(function() {
			if ($(this).parent().hasClass('active')) { $(this).parent().removeClass('active');  } else { $(this).parent().addClass('active'); };
			$(this).next('p').slideToggle('fast');
		});
		
		$('#content-slide').cycle({ 
		    fx:     'fade', 
		    speed:  'normal', 
		    timeout: 8000, 
		    next:   '#next2', 
		    prev:   '#prev2'
		});
		
		$('#header-homepage-bgs').cycle({ 
		    fx:     'fade', 
		    speed:  'slow', 
		    timeout: 5000
		});
		
		$('#videos li').hover(function() {
			$(this).find('img').fadeTo('normal',.75).css('border','1px solid #1a3c77');
		}, function() {
	        $(this).find('img').fadeTo('normal',1).css('border','1px solid #fff');
		});
	});
	
	// Cufon calls
	
	Cufon.replace('h6');