jQuery(document).ready(function() {
	jQuery("#contenttab > div").hide();
	jQuery("#contenttab > div:eq(0)").show();
	jQuery("#tabs > a:eq(0)").css("background", "url(/blog/wp-content/themes/edublin_theme/images/bg_tabselected1.png) top right no-repeat");
	/*jQuery("#tabs > a:eq(1)").css("background", "url(wp-content/themes/edublin_theme/images/bg_tab2.png) top right no-repeat");
	jQuery("#tabs > a:eq(2)").css("background", "url(wp-content/themes/edublin_theme/images/bg_tab3.png) top right no-repeat");*/
	
});



function opentab(num) {
	jQuery("#contenttab > div").hide();
	jQuery("#contenttab > div:eq(" + (num-1) + ")").fadeIn();
	jQuery("#tabs > a:eq(0)").css("background", "url(/blog/wp-content/themes/edublin_theme/images/bg_tab1.png) top right no-repeat");
	jQuery("#tabs > a:eq(1)").css("background", "url(/blog/wp-content/themes/edublin_theme/images/bg_tab2.png) top right no-repeat");
	jQuery("#tabs > a:eq(2)").css("background", "url(/blog/wp-content/themes/edublin_theme/images/bg_tab3.png) top right no-repeat");
	jQuery("#tabs > a:eq(" + (num-1) + ")").css("background", "url(/blog/wp-content/themes/edublin_theme/images/bg_tabselected" + (num) + ".png) top right no-repeat");
}






/* ORIGINAL **********************************************************/
/*function opentab(num) {   
	jQuery("#contenttab > div").hide();
	jQuery("#contenttab > div:eq(" + (num-1) + ")").fadeIn();
	jQuery("#tabs > a").css("background", "").css("font-size", "12px");
	jQuery("#tabs > a:eq(" + (num-1) + ")").css("background", "url(wp-content/themes/edublin_theme/images/bg_tabselected" + (num) + ".png) top right no-repeat");
}*/