// JavaScript Document
$(document).ready(function(){
	showimages();
	showimages_slide();
	showContent();
	$('.BannerImages').cycle({ 
    fx:     'fade', 
    speed:   1200, 
    timeout: 2500, 
    next:   '#banner', 
    pause:   1 
	});				   
	$('img.Email').hover(
		function (){		
			$(this).attr("src", 'images/centerblog/menuleft/EmailHover.jpg');
		},
		function (){
			$(this).attr("src", 'images/centerblog/menuleft/Email.jpg');			
		}
	  )
});
function showContent(){
	$('.ListZone dl dt').click(function(){
		$('.ListZone dt span').removeClass('Current');
		thisdd=$(this).next('dd');
		if (!thisdd.is(':visible')){
			$('.ListZone dd').slideUp('fast');
			thisdd.slideDown('slow');
			$(this).find('span').addClass('Current');
		}
		else {
			thisdd.slideUp('slow');
			$(this).find('span').removeClass('Current');
		}
		
	})
}
