/****************************************************************************
 *  Google Map
 ****************************************************************************/
jQuery(document).ready(function(){
	$("#main a.googlemap").each(function(){
		var link = $(this);
		var element = ((link.parents('p:first').length>0)? link.parents('p:first') : link );
		element.before('<iframe width="0" height="0" src=""></iframe><iframe width="100%" height="300" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="'+link.attr("href")+'&amp;view=map&amp;output=embed"></iframe>');
	});
});


