$(document).ready(function(){
var margin = $("#image13").width()/2;
var width=$("#image13").width();
var height=$("#image13").height();
$("#image14").stop().css({width:'0px',height:''+height+'px',marginLeft:''+margin+'px',opacity:'0.5'});
$("#reflection14").stop().css({width:'0px',height:''+height+'px',marginLeft:''+margin+'px'});

	$("#image13").hover(function(){
		$(this).stop().animate({width:'0px',height:''+height+'px',marginLeft:''+margin+'px',opacity:'0.5'},{duration:500});
		$("#reflection13").stop().animate({width:'0px',height:''+height+'px',marginLeft:''+margin+'px'},{duration:500});
		window.setTimeout(function() {
		$("#image14").stop().animate({width:''+width+'px',height:''+height+'px',marginLeft:'0px',opacity:'1'},{duration:500});
		$("#reflection14").stop().animate({width:''+width+'px',height:''+height+'px',marginLeft:'0px'},{duration:500});
		},500);
	});
	$("#image14").mouseleave(function(){
		$(this).stop().animate({width:'0px',height:''+height+'px',marginLeft:''+margin+'px',opacity:'0.5'},{duration:500});
		$("#reflection14").stop().animate({width:'0px',height:''+height+'px',marginLeft:''+margin+'px'},{duration:500});
		window.setTimeout(function() {
		$("#image13").stop().animate({width:''+width+'px',height:''+height+'px',marginLeft:'0px',opacity:'1'},{duration:500});
		$("#reflection13").stop().animate({width:''+width+'px',height:''+height+'px',marginLeft:'0px'},{duration:500});
		},500);
	});
});
