(function($){
	$(function() {
		var iframes = $(".gtFrame");
		$.each(iframes, function(key, value) { 	
		  // alert(key + ': ' + value); 		  
		  var parentElement = $(this).parent();
		  var style = $(this).attr('style');		  
		  var src = $(this).attr('href');		  
		  var id = $(this).attr('id');		  
		  $(this).remove();		  
		  $(parentElement).append('<iframe src="'+ src + '" style="'+ style + '" id="' + id + '" frameborder="0"></iframe>');
		});
	});
})(jQuery);
