(function($){
   getClassName = function($name) {
      $theName = $name.toLowerCase();
		//alert($theName);
		if(($theName == "web") || ($theName == "webdesign") || ($theName == "webd")){
			return "projects-web";
		}else if(($theName == "print") || ($theName == "printd")){
			return "projects-print";
		}else if(($theName == "photo") || ($theName == "photography") || ($theName == "photod")){
			return "projects-photography";
		}else{
			return $theName;
		}
		
		return $theName;
   };
})(jQuery);

