jQuery(document).ready(function($) {
	$('#multi-sidebar').tabs();
	
	$('#commentform').validate();
	$('.featured').hover( 
		function() {
			$('#featured-slideshow').cycle('pause');
			$('#controls').fadeIn();
		}, 
		function() {
			$('#featured-slideshow').cycle('resume');
			$('#controls').fadeOut();
		}
	);
	$('#featured-slideshow').cycle({
		fx: 'fade',
		speed: 250,
		next: '#controls .next',
		prev: '#controls .prev',
		timeout: 6000
	});
	
	// track the clicks
	$('a').click(function(){
	  if (this.hostname == "workingpoint.com" || this.hostname == "www.workingpoint.com" || this.hostname == "signup.workingpoint.com") {
  	  if (this.id)
  	    pageTracker._setVar(this.id);
  	  else if (this.className)
  	    pageTracker._setVar(this.className);
  	  else if (this.title)
  	    pageTracker._setVar(this.title);
  	  else if (this.text)
  	    pageTracker._setVar(this.text);
  	  else if (this.href)
  	    pageTracker._setVar(this.href);
  	  else
  	    pageTracker._setVar("FIND ME!!!");
  	}
	});
});