


$(function() {

$('#sub_educational').hide();

$('#slideshow').cycle({ 
    speed:  3000, 
    timeout: 4000,
    pager:  '#suri'
}); 

$('#slideshow_edu').cycle({ 
    speed:  3000,  
    pager:  '#edu_nav'
}).cycle('pause'); 
 
$('#suri').click(function() { 
    $('#nav li:eq(2) a').trigger('click'); 
    return false;
}); 

$('#tmenu3').mouseover(function() { 
	$('#sub_educational').show();
});


$('#tmenu3').mouseout(function() { 
	$('#sub_educational').hide();
});

});

$(document).ready(function() {
	$('.accordionButton').click(function() {
		$('.accordionButton').removeClass('on');
		$('.accordionContent').slideUp('normal');
   		
   		if($(this).next().is(':hidden') == true) {
			$(this).addClass('on');
			$(this).next().slideDown('normal');
		 } 
		  
	 });	 
	 $('.accordionButton').mouseover(function() {
		$(this).addClass('over');
	}).mouseout(function() {
		$(this).removeClass('over');										
	});
	
	
	$('.accHide').hide();

});

$(".accItem").click(function(event){
		$('.accItem').removeClass("currentNavi");
      $(this).addClass("currentNavi");
;
});



