	$(document).ready(function() { 	

		$("#float").makeFloat({x:"current",y:"current"});
		
		
		//$(".cycle-cover").hover(function() {
		$(".cycle").hover(function() {
		    $(this).children(".cycle-wrap").children(".cycle-cover").children("img").stop(true, true).animate({opacity: "0"}, "slow");
		    $(this).children(".cycle-prev").children("img").fadeIn("fast");
		    $(this).children(".cycle-next").children("img").fadeIn("fast");
		}, function() {
		    $(this).children(".cycle-wrap").children(".cycle-cover").children("img").animate({opacity: "1.0"}, "fast");
		    $(this).children(".cycle-prev").children("img").fadeOut("fast");
		    $(this).children(".cycle-next").children("img").fadeOut("fast");			
		});	
/*
		$(".cycle-prev").hover(function() {
			$(this).children("img").fadeIn("fast");	 
		}, function() {
			$(this).children("img").fadeOut("fast");	 
		});			
		
		$(".cycle-next").hover(function() {
			$(this).children("img").fadeIn("fast");	 
		}, function() {
			$(this).children("img").fadeOut("fast");	
		});	
		*/
	});	
			
	Cufon.replace('#navigation span, .what-text-item p, .contact p, #join-message p, #join-form label, #we-are-top p, #we-are-middle p, #join-subscribe p, #facebook p, #jobs p', {
		hover: true,
		hoverables: { a: true }
	});		
		
