$(document).ready(function(){
	var randomnumber = Math.floor(Math.random()*4);
	var directionVal = "top";
	
	if (randomnumber == 0){
		directionVal = "top";
	}
	
	if (randomnumber == 1){
		directionVal = "bottom";
	}
	
	if (randomnumber == 2){
		directionVal = "left";
	}
	
	if (randomnumber == 3){
		directionVal = "right";
	}
	
	var lq = Liquid({
		src:"images/logo.gif",
		target: document.getElementById("logo_company"),
		direction: "" + directionVal + "",
		speed: 20,
		scale: 2000
	});
});
