// JavaScript Document

$(document).ready(function() {
			

			$("a#example6").fancybox({
				'titleShow'	: false
			});

			$("a[rel=example_group]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titleShow'	: false
				
			});

			
				$(document).ready(function() {
		// Add the class 'button' just like in CSS with a dot in front of it
		$('.logo,.real').append('<span class="hover"></span>').each(function () {
	  		var $span = $('> span.hover', this).css('opacity', 0);
	  		$(this).hover(function () {
	    		$span.stop().fadeTo(500, 1); //Change the number 500 to change the speed of the Fade In
	 		}, function () {
	   	$span.stop().fadeTo(500, 0); //Change the number 500 to change the speed of the Fade Out
	  		});
		});
	});
			
			

		});
