// jquery‚ĢˇĄ¨s
$(document).ready(function(){
    $('#lineup_more').hide();
    $('#button_more').show();
    $('#eimg').hover(function(){
            $('#eimg').attr(
                'src','images/enter_hilite.gif');
        },function(){
            $('#eimg').attr(
                'src','images/enter.gif');
    });
    $('#button_more').click(function(){
        $('#button_more').slideToggle('fast', function(){
            $('#lineup_more').slideToggle('fast');
        });
    });
    $('#button_close').click(function(){
        $('#lineup_more').slideToggle('fast', function(){
                $('#button_more').slideToggle('fast');
        });
    });
    $('.lineup>li>a>img').hover(function(){$(this).fadeTo(100, 0.4);}, function(){$(this).fadeTo(500, 1.0);});
    $('#imgmore').hover(function(){
        $(this).attr('src', 'images/more-lineup_hilite.gif');
        }, function(){
        $(this).attr('src', 'images/more-lineup.gif');
    });
});


$(function() {
	var images = $("img");
		for(var i=0; i < images.size(); i++) {
			if(images.eq(i).attr("src").match("_btn.")) {
			$("img").eq(i).hover(function() {
			$(this).css('opacity', '0.6');
			}, function() {
			$(this).css('opacity', '1');
			});
		}
	}
});

