jQuery(function ($) {
	// $.ajaxSetup forces the browser NOT to cache AJAX calls.
	$.ajaxSetup ({  
		cache: false  
	});
	
/*##################  OVERLAY  ################################ */
	$("#footer a[rel], #profile a[rel], #singleMainContent .shipping_info a, #singleMainContent .add_to_wishlist_inactive a, #floatswrap .order_table a[rel]").each(function(i) {
			
		$(this).overlay({
			effect: 'apple'
		});			
	});
});	

$(window).load(function(){
});

