var $j = jQuery.noConflict();

$j(document).ready(function () {
	$j('.vid_id a').click(function () {
		var vidID = $j(this).attr('href');
		$j('div.video_player').load("/wp-content/themes/more_than_mary/video_player_ajax.php",{video:vidID});
		return false;
	});
});
