// JavaScript Document	
$(document).ready(function() {
	$("#main-menu ul li a").css( {backgroundPosition: "0 -60px"} );
	$("#main-menu ul li a").hover(function(){
			$(this).stop().animate(
			{backgroundPosition:"(0 0px)"}, 
			{duration:500})
		},
		function(){
			$(this).stop().animate(
			{backgroundPosition:"(0 -60px)"}, 
			{duration:500})
		}
	);
	
	//activate the lightbox gallery
	$('a[rel="lightbox"]').css({'border' : 'none'}).lightBox();
	
	//carousel
	$('#carousel-slides').cycle({ 
	    fx:      'scrollHorz', 
	    speed:    500, 
	    timeout:  5000,
		next:   '#carousel-next', 
    	prev:   '#carousel-previous' 
	});
    // Eductaion animation
    $('#div-image').cycle({
        fx:      'fade',
        speed:   500,
        timeout: 5000
    });
});
