$(document).ready(function() {

	/* 	Hide work entries via css
		----------------------------------------------------------*/
		$(".work_cat").click(function(event) {
			var id = $(this).attr("name");
			// add actve class to the button
			$(".work_cat").each(function(){
				$(this).removeClass('active');
			});
			$(".work_cat_all").removeClass('active');
			$(this).addClass("active");
			// hide all work entries
			$(".work_cat_box").each(function(){
				$(this).hide();
			});			
			// show work entries with a class of id
			$("." + id).each(function(){
				$(this).show();
			});
			return false;

		});
		
	/* 	Set Form Variable for comment replying
		----------------------------------------------------------
		$(".reply_link").click(function(event) {
			var id = $(this).attr("id");
			id = id.substr(5);
			//alert(id);
			var parent_id = $("#parent_id");
			parent_id.val(id);
			return false;
		});
	*/	
}); 
