$(function(){
	$(".trigger").bind("mouseenter",function(){
			$(".x1").fadeIn("fast"); 
			$(".x2").fadeOut("fast");
			$(".x3").fadeOut("fast");
			$(".x4").fadeOut("fast");
			$(".x5").fadeOut("fast");
			$(".x6").fadeOut("fast");	
	}).bind("mouseleave",function(){
			$(".x1").fadeOut("fast");

	});
});
		
$(function(){
	$(".trigger2").bind("mouseenter",function(){
			$(".x2").fadeIn("fast"); 
			$(".x1").fadeOut("fast");
			$(".x3").fadeOut("fast");
			$(".x4").fadeOut("fast");
			$(".x5").fadeOut("fast");
			$(".x6").fadeOut("fast");	
	}).bind("mouseleave",function(){
			$(".x2").fadeOut("fast");

	});
});
		
		
$(function(){
	$(".trigger3").bind("mouseenter",function(){
			$(".x3").fadeIn("fast"); 
			$(".x2").fadeOut("fast");
			$(".x1").fadeOut("fast");
			$(".x4").fadeOut("fast");
			$(".x5").fadeOut("fast");
			$(".x6").fadeOut("fast");	
	}).bind("mouseleave",function(){
			$(".x3").fadeOut("fast");

	});
});
		
		
$(function(){
	$(".trigger4").bind("mouseenter",function(){
			$(".x4").fadeIn("fast"); 
			$(".x2").fadeOut("fast");
			$(".x3").fadeOut("fast");
			$(".x1").fadeOut("fast");
			$(".x5").fadeOut("fast");
			$(".x6").fadeOut("fast");	
	}).bind("mouseleave",function(){
			$(".x4").fadeOut("fast");

	});
});
		
		
$(function(){
	$(".trigger5").bind("mouseenter",function(){
			$(".x5").fadeIn("fast"); 
			$(".x2").fadeOut("fast");
			$(".x3").fadeOut("fast");
			$(".x4").fadeOut("fast");
			$(".x1").fadeOut("fast");
			$(".x6").fadeOut("fast");	
	}).bind("mouseleave",function(){
			$(".x5").fadeOut("fast");

	});
});
		
		
$(function(){
	$(".trigger6").bind("mouseenter",function(){
			$(".x6").fadeIn("fast"); 
			$(".x2").fadeOut("fast");
			$(".x3").fadeOut("fast");
			$(".x4").fadeOut("fast");
			$(".x5").fadeOut("fast");
			$(".x1").fadeOut("fast");	
	}).bind("mouseleave",function(){
			$(".x6").fadeOut("fast");

	});
});
		Dissolve = function(elem1, elem2, duration)
{
		Spry.Effect.Cluster.call(this, {duration: duration});
		var fadeOut = new Spry.Effect.Opacity(elem1, 1, 0, {duration: duration, toggle: true});
		var fadeIn = new Spry.Effect.Opacity(elem2, 0, 1, {duration: duration, toggle: true});
		this.addParallelEffect(fadeOut);
		this.addParallelEffect(fadeIn);
};
Dissolve.prototype = new Spry.Effect.Cluster();
Dissolve.prototype.constructor = Dissolve;
