jQuery(document).ready(function() {
	jQuery(".videoBlog").click(function(e) {
		e.preventDefault();
		var videoBlogId = this.id.split( '-' )[1];
		if( videoBlogId !== undefined ){
			jQuery.get('/ajax/videoBlogMain/getVideoMain.php?videoId='+videoBlogId, function(data) {
				jQuery('#wsop-video-blog-ajax').html(data);	
			});
			
		}	
	
	});
});

