$(document).ready(function(){
$('.flip0, .flip1, .flip2, .flip3, .flip4, .flip5, .flip6, .flip7, .flip8, .flip9').hide();
$('#item0').hover(function(){
	$('.flip0').animate({
		'opacity': 'show',
		'top': '445'
	}, 600, 'easeOutBounce');},
	function() {
	$('.flip0').animate({
		'top': '0',
		'opacity': 'hide'
	}, 200);
});
$('#item1').hover(function(){
	$('.flip1').animate({
		'opacity': 'show',
		'top': '445'
	}, 600, 'easeOutBounce');},
	function() {
	$('.flip1').animate({
		'top': '0',
		'opacity': 'hide'
	}, 200);
});
$('#item2').hover(function(){
	$('.flip2').animate({
		'opacity': 'show',
		'top': '445'
	}, 600, 'easeOutBounce');},
	function() {
	$('.flip2').animate({
		'top': '0',
		'opacity': 'hide'
	}, 200);
});
$('#item3').hover(function(){
	$('.flip3').animate({
		'opacity': 'show',
		'top': '445'
	}, 600, 'easeOutBounce');},
	function() {
	$('.flip3').animate({
		'top': '0',
		'opacity': 'hide'
	}, 200);
});
$('#item4').hover(function(){
	$('.flip4').animate({
		'opacity': 'show',
		'top': '445'
	}, 600, 'easeOutBounce');},
	function() {
	$('.flip4').animate({
		'top': '0',
		'opacity': 'hide'
	}, 200);
});
$('#item5').hover(function(){
	$('.flip5').animate({
		'opacity': 'show',
		'top': '445'
	}, 600, 'easeOutBounce');},
	function() {
	$('.flip5').animate({
		'top': '0',
		'opacity': 'hide'
	}, 200);
});
$('#item6').hover(function(){
	$('.flip6').animate({
		'opacity': 'show',
		'top': '445'
	}, 600, 'easeOutBounce');},
	function() {
	$('.flip6').animate({
		'top': '0',
		'opacity': 'hide'
	}, 200);
});
$('#item7').hover(function(){
	$('.flip7').animate({
		'opacity': 'show',
		'top': '445'
	}, 600, 'easeOutBounce');},
	function() {
	$('.flip7').animate({
		'top': '0',
		'opacity': 'hide'
	}, 200);
});
$('#item8').hover(function(){
	$('.flip8').animate({
		'opacity': 'show',
		'top': '445'
	}, 600, 'easeOutBounce');},
	function() {
	$('.flip8').animate({
		'top': '0',
		'opacity': 'hide'
	}, 200);
});
$('#item9').hover(function(){
	$('.flip9').animate({
		'opacity': 'show',
		'top': '445'
	}, 600, 'easeOutBounce');},
	function() {
	$('.flip9').animate({
		'top': '0',
		'opacity': 'hide'
	}, 200);
});
$('.show0').cycle({ 
    fx:     'blindY',
	speed: 200,
    next:   '.show0', 
	prev: '.flip0',
    timeout: 0 
});
$('.show1').cycle({ 
    fx:     'blindY', 
    speed:  300, 
    next:   '.show1', 
	prev: '.flip1',
    timeout: 0 
});
$('.show2').cycle({ 
    fx:     'blindY', 
    speed:  300, 
    next:   '.show2', 
	prev: '.flip2',
    timeout: 0 
});
$('.show3').cycle({ 
    fx:     'blindY', 
    speed:  300, 
    next:   '.show3',
	prev: '.flip3', 
    timeout: 0 
});
$('.show4').cycle({ 
    fx:     'blindY', 
    speed:  300, 
    next:   '.show4',
	prev: '.flip4', 
    timeout: 0 
});
$('.show5').cycle({ 
    fx:     'blindY', 
    speed:  300, 
    next:   '.show5',
	prev: '.flip5', 
    timeout: 0 
});
$('.show6').cycle({ 
    fx:     'blindY', 
    speed:  300, 
    next:   '.show6',
	prev: '.flip6', 
    timeout: 0 
});
$('.show7').cycle({ 
    fx:     'blindY', 
    speed:  300, 
    next:   '.show7',
	prev: '.flip7', 
    timeout: 0 
});
$('.show8').cycle({ 
    fx:     'blindY', 
    speed:  300, 
    next:   '.show8', 
	prev: '.flip8',
	timeout: 0 
});
$('.show9').cycle({ 
    fx:     'blindY', 
    speed:  300, 
    next:   '.show9', 
	prev: '.flip9',
    timeout: 0 
});
});