$(document).ready(function(){
	$('a.lightBox').lightBox();
	$('.downloads div.close').hide();
	$('.downloads a.accordion').click(function(){
		var thisWrapper = $(this).next();
		if(thisWrapper.hasClass('open')){
			
			thisWrapper.removeClass('open');
			thisWrapper.addClass('close');	
			$(this).find('span').css("background","url('_img/orange-arrow.png') no-repeat left 3px");		
			thisWrapper.slideUp();	
			
		}else{
			
			thisWrapper.removeClass('close');
			thisWrapper.addClass('open');
			$(this).find('span').css('background',"url('_img/orange-arrow-down.png') no-repeat left 5px");		
			thisWrapper.slideDown();	
		}
		return false;
	});
	
});