jQuery(document).ready(function(){
	getVideos();
});

function getVideos(){
	jQuery('.vimeoID').each(function(){
		$this = jQuery(this);
		$this.after('<iframe src="http://www.youtube.com/embed/'+$this.text()+'" width="600" height="370" style="border:1px solid #CCCCCC;" frameborder="0"></iframe>');
		$this.remove();
	});
};

