/**
 * @author Grzegorz Godlewski
 */

$(document).ready(function(){

	function sBefore()
	{
		
	}
	
	function sAfter()
	{
		
	}
	
	function sTitle(index, DOMElement)
	{
		if (DOMElement.tagName == 'A')
		{
			return "<a href=\"#\">"+DOMElement.children[0].alt+"</a>";
		}
		else if (DOMElement.tagName == 'IMG')
		{
			return "<a href=\"#\">"+DOMElement.alt+"</a>";
		}
	}
	
	$('#banner-images').cycle({ 
		fx: 'scrollRight',
		timeout: 10000,
		pager: '#banner-nav',
		pagerAnchorBuilder: sTitle
	});
	
	$('#subpage-banner-content').cycle({ 
		fx: 'fade',
		timeout: 4000
	});
	
	$('#customer-logo-rotator').cycle({ 
		fx: 'fade',
		timeout: 4000,
		next: '#customer-logo-next',
		prev: '#customer-logo-prev'
	});
});
