/*
 * @author rur@bauer.de
 * @2011-09-29
 * 
 * Move box from right col to left col
 * 
 */




this.moveboxes = function(){
	
	var linkbox = $(".linkbox").html();
	$("#col1_content #submenu").append("<div class=\"linkbox\" >" + linkbox + "</div>");
	$("#col2_content .linkbox").remove();
	$(".linkbox").css("margin","40px 0 12px 0");
	$(".linkbox").css("border","0px #ccc solid");
	$(".linkbox").css("width","205px");
}

/*
 *  Here the scripts are called when the document is ready
 * 
 */

$(document).ready(function(){
	moveboxes();
	
});
