
$(document).ready(function(){
	
	$('p.warning').remove();
	
	$('#controller').jFlow({
		slides: '#slides',
		controller: '.jFlowControl', 
		slideWrapper : '#jFlowSlide', 
		selectedWrapper: 'jFlowSelected', 
		width: '618px',
		height: '198px',
		duration: 600,
		prev: '.jFlowPrev', 
		next: '.jFlowNext' 
	});
	
	$('.navigation').accordion({
		header: 'h3.title',
		active: '.selected',
		autoHeight: false
	});
	
	$.get($siteRoot+'token.php',function(data){
	  $('form#contact').append('<input type="hidden" name="ts" value="'+data+'" />');
	});
	
	$('#cycle1').cycle({pause:1});
	$('#cycle2').cycle({pause:1});
	
	$('div.products').click(function(){
		window.location = $siteRoot+'index.php?/'+this.id;
	});

});

