 $(document).ready(function(){
      //$('#portfolio-list').filterable();
      
        		// When a link is clicked
			
		$('#portfolio-filter a.info').click(function(){
		    // switch all tabs off
			$(".active").removeClass("active");
			
			// switch this tab on
			$('a#info').addClass("active");
			
			// slide all content up
			$(".content").slideUp();
			
			// slide this content up
			var content_show = $(this).attr("title");
			$("#content_2").slideDown();
		    
		    
		});	
			
		$("a.tab").click(function () {
			
			
			// switch all tabs off
			$(".active").removeClass("active");
			
			// switch this tab on
			$(this).addClass("active");
			
			// slide all content up
			$(".content").slideUp();
			
			// slide this content up
			var content_show = $(this).attr("title");
			$("#"+content_show).slideDown();
		  
		});

	
	
        // webdesign hover function .. 
        $('#portfolio-list .webdesign').hover(
        function () {
          
        }, 
        function () {
          false;
        }
      );

   
        //$('#forms').easytabs();
	
     /*
     FORM HANDLING:
     -----------------------------------------------------------------------------*/
     
	 /* Contactform */
   
	 /* Remind me (blog) */
	 $('#remindme .btn').click(function(){
	 
		 $.ajax({
               type: "POST",
               data: $('#remindme').serialize(),               
               url: "/home/remindme",       
               success: function(data){
                    if(data == 'true'){
                           $('#remindme').hide();
						   $(' .remindmeSucces ').css('display', 'block');
							
                    }   
			}
		}); 
	 
	 
	 
	 });
     
     	
	
     
     
     
     
        
           
        });

