// $(document).ready(function () {
// 	var tabs = [];
// 	var tabContainers = [];
// 	
// 	$('ul.menu a').each(function() {
// 		if (this.pathname == window.location.pathname) {
// 			tabs.push(this);
// 			tabContainers.push($(this.hash).get(0));
// 		}
// 	});
// 	
// 	$(tabs).click(function() {
// 		$(tabContainers).hide().filter(this.hash).show();
// 		$(tabs).removeClass('active');
// 		$(this).addClass('active');
// 		return false;
// 	});
// 	
// 		$(tabs).filter(':first').click();
// });
$(function () {
    var tabContainers = $('div#main > div.movie');
    
    $('div#sidebar ul.menu a').click(function () {
        tabContainers.hide().filter(this.hash).show();
        
		$('div#sidebar ul.menu a').removeClass('active');
        $(this).addClass('active');
        
        return false;
    }).filter(':first').click();

});
