
$(document).ready(function(){
    $("select").change(function(){
        group = $("select option:selected").val();
		if(group == 0)
        window.location = "events-e25.html";
		if(group == 1)
		window.location = "events-ex.html";
    })
	$('tr:not(#thead)').click(function() {
		var id = $('table tr').index(this);
		show(id);
	});
	
    
});


function show(id){
    $('#flash img').each(function(){
		$(this).hide();
	});
	 $('div.right div.inner').each(function(){
		$(this).hide();
	});
	$('#flash img').eq(id-1).show();
	 $('div.right div.inner').eq(id-1).show();
}