/*
Always run on every page in catalog side of the store at the end of the page
 */
	//Inizialize flyouts
	$('.flyoutMarker').flyout({fitToWindow: false, loader: 'flyoutLoader'});
	//Inizialize flyout remotes
	$('.flyoutRemoteMarker').click(function(){
		var targetFlyoutHref = $(this).attr('href');
		$('.flyoutMarker').filter(  function(){return $(this).attr('href') == targetFlyoutHref}  ).click();
		return false; //To avoid usage of the link by the browser.
	});
	//Preload flyouts
	/*$('.flyoutMarker').each(function(){
		$.preload([$(this).attr('href')]);
	});*/