/* portfolio */
jQuery.noConflict();

jQuery(document).ready(function(){
	jQuery(this).find("a.show").each(function (j){
		if(jQuery("."+jQuery(this).attr("id"))){
			var cfd = jQuery("."+jQuery(this).attr("id"));
			cfd.hide(0);
		}
	});
	jQuery("a.show").click(function(){
		if(jQuery("."+jQuery(this).attr("id"))){
			var cfdc = jQuery("."+jQuery(this).attr("id"));
			if(cfdc.css("display")=='none'){
				jQuery("a.show").each(function(i){
					if(jQuery("."+jQuery(this).attr("id"))){
						var cfdcs = jQuery("."+jQuery(this).attr("id"));
						cfdcs.hide(300);
					}
				});
				cfdc.show(600);
			} else {
				cfdc.hide(600);
			}
		}
	});
});