$(document).ready(function() {
	
	// Animated link boxes in header
	$("ul.menu li a").hover(function(e) {
			$(this).hoverFlow(e.type, { "padding-top": "35px"}).css({ "color": "#00B7EB", "background" : "#EFEFED"});
		}, function(e) {
			$(this).hoverFlow(e.type, { "padding-top": "8px"}).css({"color": "#999", "background" : "#DFDFDF"});
		}
	);

	// Cloud Mover
	animateCloud();
});


function animateCloud() {
        $("#cloud").animate({ 'left':  $("#page-head").width() - $("#cloud").width() - parseInt($("#cloud").css("left")) }, 50000, 'linear', function() {
            animateCloud();
        });
    }
    

