$(document).ready(function() {
		//When page loads...
        $(".nav_content").hide(); //Hide all content
        $("ul.nav li:first").addClass("active").show(); //Activate first tab
        $(".nav_content:first").show(); //Show first tab content
        //On Click Event
});
