$(document).ready(function() {
	var loc = document.location.toString();
	var key = '#post-';
	
	if (loc.match(key)) {
		var pid = loc.split(key)[1];
		var vid = $('#video-' + pid);

		vid.attr("autoplay","1");
	}
});

function vimeo_check_autoplay(swf_id) {

	var moogaloop = document.getElementById(swf_id);
	var target = $("#" + swf_id).parent();
	
	if(target.attr('autoplay') == 1) {
		moogaloop.api_play();
	}
}