function onTrailerStartPlaying(t) {
	var id = t.attr('poster').split('/').pop().substr(0,6).replace(/^0+/,'');
	$.get('/Trailer/count/id/'+id,function(d,s,x){
		// YEAH!
	});
}

$(document).ready(function(){
	$('video.trailer').attr('onplay', 'return onTrailerStartPlaying($(this));');
});
