// 111101 Compas Landing Page Script

$(document).ready(function(){
	/*ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅtipToolÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ*/
	$(function(){
			$(".tiptext").tipTip();
		});
	/*ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅcontactInfoÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ*/
	$('p#contactInfo').hide();
	/* select the 2nd paragraph */
	$('div#linkBox p:eq(1)').bind("click",function(){
		$('p#contactInfo').slideToggle(150);
  	});
  	/*ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅcycleÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ*/
  	$('#gallery').cycle({
	/*fx: 'scrollRight',*/
	fx: 'fade',
	timeout: 4000,/*duration of image on screen*/
	speed: 2000,/*transition period*/
	delay: -2000,
	pager: '#pager',
	next: '#next',
	prev: '#prev'
});
$('#playControl').toggle(
		function() {
			$('#gallery').cycle('pause');
			$(this).text('Play');
		},
		function() {
			$('#gallery').cycle('resume');
			$(this).text('Pause');
		});
});
/*ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅend cycleÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ*/






















