// aici introducem js care trebuie introdus

/*jquery starter
$(document).ready(function(){
	 $("#port-all").click(function(event){
	   event.preventDefault();
	   $("#content").removeClass("port-web port-logo");
	   $("#content").addClass("port-all");
	   $("#webd2").fadeOut("fast", function () {
	   $("#webd3").fadeOut("fast", function () {
	   $("#webd1").fadeIn("fast"); } ); } );
	 });
	 $("#port-web").click(function(event){
	   event.preventDefault();
	   $("#content").removeClass("port-logo port-all");
	   $("#content").addClass("port-web");
	   $("#webd1").fadeOut("fast", function () {
	   $("#webd3").fadeOut("fast", function () {
	   $("#webd2").fadeIn("fast"); } ); } );
	 });
	 $("#port-logo").click(function(event){
	   event.preventDefault();
	   $("#content").removeClass("port-web port-all");
	   $("#content").addClass("port-logo");
	   $("#webd2").fadeOut("fast", function () {
	   $("#webd1").fadeOut("fast", function () {
	   $("#webd3").fadeIn("fast"); } ); } );
	 });
	 $("#arata_ascunsele").click(function(event){
	   event.preventDefault();
	   $("#arata_ascunsele").fadeOut("fast", function () {
	   $("#ascunsele").fadeIn("fast"); });
	 });
 });

 */
