jQuery(document).ready(function() {

/* For showing image gallery or group of images */
	
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	300, 
		'speedOut'		:	200, 
		'overlayShow'	:	true
	});
	
});


$(document).ready(function(){

		$(".my_account").click(function(event){

			$("ul.popOut").toggle();		

			return false;

		});

		$("html").click(function(event){

			$("ul.popOut").hide();

		});

	});
