$(document).ready(function(){
	$(".post:first").addClass("hero");
	$(".post:nth-child(2)").addClass("villain"); 
	
	$('#tabContent>li:gt(0)').hide();
	$('#tabsNav li:first').addClass('active'); 
	//$('#tabsAndContent #tabsNav li').bind('click', function() {
	$('#tabsAndContent #tabsNav li').bind('mouseover', function() {
		$('li.active').removeClass('active');
		$(this).addClass('active');
		var target = $('a', this).attr('href');
		$(target).slideDown(400).siblings().slideUp(300);
		return false;
	});
	
});

//inner pages Script
 $(document).ready(function(){
	$(".post:first").addClass("hero");
	$(".post:nth-child(2)").addClass("villain"); 
	
	$('#inner-contentarea>li:gt(0)').hide();
	$('#inner-tabnav li:first').addClass('active'); 
	$('#inner-tabcontent #inner-tabnav li').bind('mouseover', function() {
		$('li.active').removeClass('active');
		$(this).addClass('active');
		var target = $('a', this).attr('href');
		$(target).slideDown(400).siblings().slideUp(300);
		return false;
	});
});


