$.noConflict();
jQuery(document).ready(function($) {
	function bc_list_init($this) {
		$('.books-list').find('.active').removeClass('active');
		$this.addClass('active');
		$('#books-center').find('.active').hide().removeClass('active');
		var uid = $this.attr('id').substring(7);
		$('#books-center').find('#bc-'+uid+'').fadeIn('slow').addClass('active');
	};
	if ($('.books-list').length>0) {
		bc_list_init($('.books-list').find('.active'));
	};
	$('.books-list a').mouseenter(function(){
		bc_list_init($(this));
	});
	function movie_list_init($this) {
		$('#movie-list').find('.active').removeClass('active');
		$this.addClass('active');
		$('#movie-cont').find('.active').hide().removeClass('active');
		var uid = $this.attr('id').substring(3);
		$('#movie-cont').find('#mi-'+uid+'').fadeIn('slow').addClass('active');
	};
	if ($('#movie-list').length>0) {
		movie_list_init($('#movie-list').find('.active'));
	};
	$('#movie-list a').mouseenter(function(){
		movie_list_init($(this));
	});
});

