
$(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);
	});
	$('tr:not(#thead)').hover(
	  function () {
	  var id = $(this).attr('id');
        $(this).addClass("over");
      }, 
      function () {
	  var id = $(this).attr('id');
        $(this).removeClass("over");
      }
    );
});


function show(id){
    $('#subpage_img_frame img').each(function(){
		$(this).hide();
	});
	 $('div.right div.inner').each(function(){
		$(this).hide();
	});
	$('#subpage_img_frame img').eq(id).show();
	$('div.right div.inner').eq(id).show();
}




