vdwBorderless = {
	videos : {
		AC : null
	},
	init : function() {
		$jq('.borderless-video').each(function() {
			$jq(this).append('<div class="video"><div id="'+$jq(this).attr('id')+'-video"></div></div>');
		});
		$jq('.borderless-video .btn-video a').bind('click', function(e) {
			e.preventDefault();
			$this = $jq(this);
			$parent = $this.parents('.borderless-video').eq(0);
			var src = $this.attr('href');
			var key = $parent.attr('id').replace('video-', '');
			swfobject.embedSWF(src, $parent.attr('id')+'-video', 216, 360, '9', '', {}, { wmode : "transparent" });
		});
	}
}

$jq(document).ready(function() {
	vdwBorderless.init();
});

