$(document).ready(function(){

	$('div.panel-header').click(function(){
		$(this).next().slideToggle('fast', function(){$(this).trigger('toggle')} );
		$(this).toggleClass('panel-hidden');
		return false;
	});
	
	$('#logo').bind('contextmenu', function(){
		location.href = '/logo' ;
		return false;
	});
		
	$('#customer-list').innerfade({
		speed: 'slow',
		timeout: '1500',
		type: 'sequence',
		containerheight: '118px'
	})
	
	$('#case-list').innerfade({
		speed: 'slow',
		timeout: '5500',
		type: 'sequence',
		containerheight: '448px'
	})
	
	$('#contact-form').bind('toggle', function(){
		window.scroll(0, 9999);
	});
	
	$('#gallery').jcarousel();
	
});