// JavaScript Document
$(document).ready(function(){
						   
	$(".centerNav a").append("<em> </em>");
	
	$(".centerNav a").hover(function() {
		$(this).find("em").animate({opacity: "show", top: "0"}, "fast");
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "80"}, "slow");
	});
	
	$(".leftmenu a").append("<em> </em>");
	
	$(".leftmenu a").hover(function() {
		$(this).find("em").animate({opacity: "show", top: "0"}, "fast");
		
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "24"}, "slow");
	});					   
						   
						   
						   
 
    $('#slideshow_container').cycle({
        fx:     'scrollDown',
        speed:   500,
        timeout: 0,
   		next:   '.upArrow',

        prev:   '.downArrow'
		
    });
		
	
	


$('#slides').cycle({
        fx:     'scrollUp',
        speed:   300,
        timeout: 0,
        next:   '#next',
        prev:   '#prev'
		
    });

 	
 


 $(function() {
        $('a.box').lightBox();
    });
 
 
 });
