jQuery(document).ready(function(){
	updateStatus();
});
function updateStatus(){
	jQuery.get(SkypeCustomImages.ajaxurl,{
		action:'sci_ajax',
		skypename:SkypeCustomImages.skypename,
	}, function(status){
		//Update the icon accordingly		var footer_html = jQuery('.sk_footer').html();		var widget_html = jQuery('.sk_widget').html();		var shortcode_html = jQuery('.sk_shortcode').html();				//alert(footer_html);		//alert(status);		
		if (footer_html != status) jQuery('.sk_footer').html(status);		if (widget_html != status) jQuery('.sk_widget').html(status);		if (shortcode_html != status) jQuery('.sk_shortcode').html(status);
	}, "html");
	setTimeout('updateStatus()', SkypeCustomImages.interval); 
}


