// JavaScript Document


$(document).ready(function() {
		DOMMove("about_foot", "about_target");
		
		if( typeof sIFR_load == 'function' )
			sIFR_load();

		//$("h1").each(function() {
			//if (this.title == "Design Go Travel Accessories") {
			//	this.style.display = "none";
			//}
		//});
});

function DOMMove(source, target)
{
	var target = document.getElementById(target);
	var source = document.getElementById(source);

	if (target != null && source != null) {
		for( var i = 0; i < source.childNodes.length; i++ )
		{
			target.appendChild(source.childNodes[i].cloneNode(true));
//			source.removeChild(source.childNodes[i]);	// this breaks in IE
		}
		source.innerHTML = "";
	}
}
