$(document).ready( function () {

	$('.navidiv').hover( function() {
		$(this).css('background-color','#e31c1c');
		$(this).css('cursor','pointer');
	}, function() {
		$(this).css('background-color','');
		$(this).css('cursor','pointer');
	}
	);

	// Init click function
	$('.menu-a').click( function () {
		// First remove current active element
		$('.menu-a').each( function(i, elem) {
			$(elem).parent().removeClass('active');
		});
		$(this).parent().addClass('active');

		// Load and add content
		var menuId = $(this).attr('id').split('-')[1];
		$('#main').load(menuId+'.html', function() {
			// If showing movies, render the view
			initSortPanel();
			if(menuId == 'movies')
				renderMovieView()
		});
	});

});

