// JavaScript Document


jQuery.noConflict();

jQuery(document).ready(function(){
				  	
					var navigationClone = jQuery("#navigation").clone(true).get(0);
					var footerClone = jQuery("#footer").clone(true).get(0);
					jQuery("#navigation").empty();
					jQuery("#footer").remove();
					jQuery("#footer").remove();
					jQuery("#container").append(navigationClone);
					jQuery("#container").append(footerClone);
					
				  });
