$j = jQuery;

$j(document).ready(function(){
	// Check if there are multiple elements
	if($j('#slider .item').length > 1)
	{
		$j('#slider').scrollable({
			next : '#slider-nav .next',
			prev : '#slider-nav .prev',
			circular : false,
			speed : 'slow'
		});
	} else 
	{
		$j('#slider-nav-container').hide();
	}
	$j('#slider .items .item').width($j(window).width());
	$j('#slider-nav-container').css('left', ($j(window).width()-$j('#container').width())/2);
	
	$j('.funnel-block, .overview-block').each(function(){
		$j(this).click(function(){
			location.href = $j('a', $j(this)).attr('href');
		});
	});
	
	$j(window).resize(function(){
		$j('#slider .items .item').width($j(window).width());
		$j('#slider-nav-container').css('left', ($j(window).width()-$j('#container').width())/2);
	});
	$j('#imagebox').scrollable();
	$j('.logos').innerfade({
		speed : 'slow',
		timeout : 4000,
		containerheight: '72px'
	});
	$j("a[rel^='prettyPhoto'],").prettyPhoto({
		deeplinking : false
	});
});
