$(document).ready(function() {
	$('.rounded-box').cornerz();
	$('.rounded-corners').cornerz();
	$('.top-rounded-corners').cornerz({radius: 20, corners: "tl tr"});
	$('.bottom-rounded-corners').cornerz({radius: 20, corners: "bl br"});
	$("a.tab").click(function () {
		$(".active").removeClass("active");
        	$(this).addClass("active");
        	$(".content").slideUp();
        	var new_content = $(this).attr("title");
        	$("#"+new_content).slideDown();
		});

});
