// create xhtml strict friendly iframe
jQuery(document).ready( function() {
		$('a.iframe').each(
			function (i) {
				$(this).replaceWith("<iframe src='" + this.getAttribute("href") + "'  frameborder='0' scrolling='no' width='440' height='300'></iframe>");
			}
		);
   });


// create xhtml strict friendly iframe
jQuery(document).ready( function() {
              var href = jQuery(location).attr('href');
	       var titl = jQuery(this).attr('title');
		$('a.social').each(
			function (i) {
                            $(this).replaceWith('<div class="social4i" style="height:29px;float: left;"><div class="social4in" style="height:29px;float: left;"><div class="socialicons s4twitter" style="float:left;margin-right: 10px;background:url(&quot;http://goo.gl/zjqd1&quot;) no-repeat;"><a href="http://twitter.com/share" data-url="'+href+'" data-counturl="'+href+'" data-text="'+titl+'" class="twitter-share-button" data-count="horizontal" data-via=""></a></div><div class="socialicons s4fblike" style="float:left;margin-right: 10px;"><div id="fb-root"></div><fb:like href="'+encodeURIComponent(href)+'" send="false" layout="button_count" width="100" height="21" show_faces="false" font=""></fb:like></div><div class="socialicons s4plusone" style="float:left;margin-right: 10px;"><g:plusone size="medium" href="'+href+'" count="true"></g:plusone></div><div class="socialicons s4fbshare" style="position: relative;float:left;margin-right: 10px;"><div class="s4ifbshare" ><a name="fb_share" type="button_count" share_url="'+encodeURIComponent(href)+'" href="http://www.facebook.com/sharer.php"></a></div></div></div><div style="clear:both"></div></div>');
 			}
		);
   });


