$(document).ready( function() {// Quovolver (jQuery)	$('#sidebar blockquote').quovolver(500, 15000);// Valid iframe (Facebook Badge) (jQuery)	$('a.iframeFB').each(		function (i) {			$(this).replaceWith("<iframe src='" + this.getAttribute("href") + "' scrolling='no' frameborder='1' style='overflow:hidden; width:128px; height:485px; border:1px #A71 solid;' allowtransparency='false'</iframe>");		});// Valid iframe (Google Map) (jQuery)	$('a.iframeMap').each(		function (i) {			$(this).replaceWith("<iframe src='" + this.getAttribute("href") + "' scrolling='no' frameborder='1' style='overflow:hidden; width:580px; height:400px; margin-bottom:15px; border:1px #A71 solid;' allowtransparency='false'</iframe>");		});	// Open External Links in New Window (jQuery)	$("a[href^='http']:not([href*='.com'])").click(function(){		window.open(this.href,''); return false;	});});
