
function applyStyle()
{
	$('.rounded').corner();
};

function applyRotateBanner()
{
	// http://www.mshowman.com/dev/jBanner/#
	$("ul.rotate_banner").jBanner({height:265,width:330,caption:false,delay:5000});

};

function showText()
{
	$(".subtitle").hide();
	$(".text_block").hide();
	
	$('.subtitle').fadeIn('3000', function() {
		$(".text_block").fadeIn('3000');
    });

};

function cubesEvents()
{
	$(".green_cube").mousemove(function() {
		animateGreenCubes();
	});
};

function animateGreenCubes()
{
	  $('.cube2').animate({
		  marginLeft: "0px"
	  }, 750, function() {
		  $('.cube2').animate({
			  marginLeft: "50px"
		  }, 750);
	  });
	  
	  $('.cube5').animate({
		  top: "0px"
	  }, 750, function() {
		  $('.cube5').animate({
			  top: "21px"
		  }, 750);
	  });
	  
	  $('.cube8').animate({
		  top: "15px"
	  }, 750, function() {
		  $('.cube8').animate({
			  top: "55px"
		  }, 750);
	  });
	  
	  $('.cube10').animate({
		  marginLeft: "768px"
	  }, 750, function() {
		  $('.cube10').animate({
			  marginLeft: "729px"
		  }, 750);
	  });
	  
	  $('.cube13').animate({
		  top: "365px"
	  }, 750, function() {
		  $('.cube13').animate({
			  top: "335px"
		  }, 750);
	  });
};

$(document).ready(function(){
    applyStyle();
    applyRotateBanner();
    showText();
    cubesEvents();
});
