function showContent(divId) {
		$('.homeContentContainer:visible').hide('fade', {speed: 3000}, function() {
			$('#'+divId).show('fade', {speed: 3000});
		});
}

$(document).ready(function() {

	// A fix for IE quirks
	if (!$.support.boxModel) {
		$('.dummyIEFix').css({'margin-top': -15});
	}

	// Initialize movie left nav buttons
	$('#moviebuttons li').click(function() {
		$('#leftNav li').removeClass('navSelected');
		var movieId = $(this).attr('id').split('_')[0];
		$(this).addClass('navSelected');
		showContent(movieId);
	});

	$('#leftNav li:not(.dummyIEFix)').mouseover(function(){
		$(this).addClass('navOn');
	}).mouseout(function() {
		$(this).removeClass('navOn');
	});
});
