$(function() {
	$('.tags').each(function(index) {
		if($(this).attr('rel')==''){ 
			$(this).css('display','none');
		}else{
			$('#link'+$(this).attr('rel')).addClass('active');		
		}//if
	});
});

function showCategory(cat){
	$('.tags').each(function(index) {
		$(this).css('display','none');
	});
	$('.links').each(function(index) {
		$(this).removeClass('active');
	});	
	$('#filter'+cat).fadeIn();
	$('#link'+cat).addClass('active');
}//showCategory

function doPost(post,what){
	$('#field'+what).val(what);
	$('#'+post).submit();
}//doPost
