$(function() {

	$("#quick-links ul li, ul#kj li").addClass('bullet');
    $(".bullet").prepend('<img src="/wp-content/themes/GraceWorks/images/bullet.png" alt="" /> &nbsp;');
    
    $("#events h4, #sermons h4").addClass('bubble');
    $(".bubble").prepend('<img class="little-bubbles" src="/wp-content/themes/GraceWorks/images/little-bubbles.png" alt="" /> &nbsp;');

    $(".nav ul li a, .sub-nav ul li a").after("&nbsp;|&nbsp;");
    $(".nav ul li a:first, .sub-nav ul li a:first").before("|&nbsp;");
    
    $("#pdf-download a, #mp3-download a").attr("target","_blank");
    
    $("#schedules tr:odd").addClass("row-highlight");
    
    $(".filter, #all").css("opacity","0.7").hover(function(){
		$(this).css("opacity","1");
       		}, function() {
           		$(this).css("opacity","0.7");
	   $(".current").css("opacity","1");
    });
       
   	$("#all").click(function(){
       	$(".member").slideDown();
       	$(".current").css("opacity","0.7");
       	$("#member-sort a").removeClass("current");
       	$(this).addClass("current");
       	return false;
   	});
   
   	$(".filter").click(function(){
    	var thisFilter = $(this).attr("id");
        $(".member").slideUp();
        $("." + thisFilter).slideDown();
		$(".current").css("opacity","0.7");
        $("#member-sort a").removeClass("current");
        $(this).addClass("current");
        return false;
   	});

});
