
/*		2011-06-28 Metaways - Alicja Gacka		*/
/*		This Script needs jquery				*/
/*
#################################################
		updates:
		
#################################################
*/

/*move contentTop to contentContainer*/


(function($) {
	$(document).ready(function(){

		if ($('#contentTop').length > 0){
				
			
			$('#contentTop').prependTo($('#contentContainer')); 
		}

	});
})(jQuery);


