﻿// JavaScript Document
  jQuery(document).ready(function() {
	 jQuery('.caption-full').hide();
	// Slider
	 jQuery('#slider ul').kwicks({
 		 max : 560,
		 duration: 500,  
		 easing: 'easeOutCubic',
 		 spacing : 0
	 });
	 jQuery("#slider li").hover(function() {
		jQuery(".caption-full",this).show();
		jQuery(".caption-full",this).stop().animate({opacity: 0.7},500, 'easeOutSine');
		jQuery(".caption",this).stop().animate({opacity: 0, left: '0'},200, 'easeInSine');	
		},function(){
		jQuery(".caption-full",this).hide();
		jQuery(".caption-full",this).stop().animate({opacity: 0}, 200, 'easeInSine');	
		jQuery(".caption",this).stop().animate({opacity: 0.7, left: '0'},500, 'easeOutSine');
	});
  });

