$(function() {

	$('.slideshow').cycle({
			fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});

	$("#BrandText").click(function () {
		$(".BrandCaption").fadeIn("slow");
	});

	$(".BrandHeadContainer").mouseover(function () {
		$(".BrandCaption").stop().fadeTo(500, 0.7);
	});
	
	$("#Zapri").click(function () {
		$(".BrandCaption").fadeOut("fast");
	});
	
	$(".BrandHeadContainer").mouseleave(function () {
        $(".BrandCaption").stop().fadeOut("fast");

	});
});
