$(document).ready(function () {
	$('#categoryList').accordion({
		autoHeight: false
	});
	$('#categoryList > li > ul > li > a').click(function () {
		window.location.hash='movies';
		var videoId = this.href.substr(this.href.lastIndexOf('/') + 1);
		$('#player').attr('src', this.href);
		return false;
	});
});
