$(function(){

   $(".current").click(function(){

	   if($(this).attr("id") == 'twitter'){
		   window.open('http://www.twitter.com/zigzagmoveis');
		   
	   }else if($(this).attr("id") == 'facebook'){
		   window.open('http://www.facebook.com/zigzagmoveis');
		   
	   }else if($(this).attr("id") == 'googlemais'){
		   window.open('https://plus.google.com/115375572391342569907');
		   
	   }else if($(this).attr("id") == 'busca'){
		   window.location = "busca_produtos.php";
		   
	   }
   
        var thisFilter = $(this).attr("id") + ".php";
		
			$("#gallery").load(thisFilter);

			$("#categories a").removeClass("current");
			
			$(this).addClass("current");
			
        return false;
		
   });

   $(".filter").click(function(){
   
	   if($(this).attr("id") == 'twitter'){
		   window.open('http://www.twitter.com/zigzagmoveis');
		   
	   }else if($(this).attr("id") == 'facebook'){
		   window.open('http://www.facebook.com/zigzagmoveis');
		   
	   }else if($(this).attr("id") == 'googlemais'){
		   window.open('https://plus.google.com/115375572391342569907');
		   
	   }else if($(this).attr("id") == 'busca'){
		   window.location = "busca_produtos.php";
		   
	   }

	    var thisFilter = $(this).attr("id") + ".php";
		
			$("#gallery").load(thisFilter);

			$("#categories a").removeClass("current");
			
			$(this).addClass("current");
			
        return false;
		
   });
   
   



});
