jQuery(document).ready(function () {

	jQuery('.cycle').cycle({ 
    delay:  3000, 
    speed:  500,
	gotoindex: '.goto'
    //before: onBefore 
}); 
 
	
});

function ParseText(str) {
	   
	   //console.log("hej")
	   
	   
    	//$.getJSON('http://www.whoa.nu/Services/AjaxServices.asmx/ConvertText?callback=?', function (data) { alert(data); });

	   
	   jQuery.ajax({
        type: "POST",
        url: 'http://www.whoa.nu/Services/AjaxServices.asmx/ConvertText',
        data: "{str:'" + str + "'}",
        contentType: "application/json; charset=utf-8",
        success: function (result) {
        	//console.log(result);
        }
    });
}

