﻿var num = 0;

$(document).ready(function() {
	// tab switcher
	$("#top_10 .tabs li a").each(function(i) {					
		$(this).click(function() {
			top10Switch(i);
			this.blur();
			return false;
		});
	});	
	
	$("#trailers_videoclips ul li a.image, #trailers_videoclips ul li a.action").hover(function() {
		$(this).siblings(".covermask").show();	
	}, function() {		
		$("#trailers_videoclips ul li .covermask").hover(function() {
			$(this).show();
		}, function() {
			$(this).hide();
		});
		$(this).siblings(".covermask").hide();
	});

});

function top10Switch(num) {
	if (num == "0") {
		$("#top_10").removeClass().addClass("module").addClass("on-box_office");
	}
	if (num == "1") {
		$("#top_10").removeClass().addClass("module").addClass("on-fan_rated");
	}
}		


		
		
