// JavaScript Document

$(document).ready(function(){


//	$("#ring-container").delay(200).animate(
//		{ right: '0px'}, {
//			duration: 'slow',
//			easing: 'easeOutElastic'	
//		});
		
	//$("#ring-container").animate({right:"0px" },600);
	//$("#ring-container").fadeTo('slow',1);

	
	$('#ring-container').fadeTo('slow', 1, function(){
    		if ($.browser.msie){this.style.removeAttribute('filter');}
	});

	$(".callout-mobile").delay(800).fadeTo('slow',1, function(){
		 if ($.browser.msie){this.style.removeAttribute('filter');}
	});
	
	$(".callout-cart").delay(850).fadeTo('slow',1, function(){
		 if ($.browser.msie){this.style.removeAttribute('filter');}
	});

	$(".callout-reporting").delay(900).fadeTo('slow',1, function(){
		 if ($.browser.msie){this.style.removeAttribute('filter');}
	});

	$(".callout-crm").delay(950).fadeTo('slow',1, function(){
		 if ($.browser.msie){this.style.removeAttribute('filter');}
	});

	$(".callout-invoice").delay(1000).fadeTo('slow',1, function(){
		 if ($.browser.msie){this.style.removeAttribute('filter');}
	});

	$(".callout-magento").delay(1050).fadeTo('slow',1, function(){
		 if ($.browser.msie){this.style.removeAttribute('filter');}
	});

	$(".callout-sap").delay(1150).fadeTo('slow',1, function(){
		 if ($.browser.msie){this.style.removeAttribute('filter');}
	});
	
});
