﻿//we must use setTimeOut, because this script is loaded before the $telerik library file
window.setTimeout(
	function()
	{
		try
		{ 
			//just in case the $telerik object was not created yet
			if($telerik==null)
			{
				//alert("no");
				return;
			}
		}
		catch(e)
		{
			//alert(e.message);
		}
		
		//in chrome we have a problem with radio buttons alingment with thier labels
		if (!$telerik.isIE)
		{
			//alert("yes");
			try
			{
				$('input[type="radio"]').addClass("non_IE_radio_input");
				$("label").addClass("non_IE_radio_label");
			}
			catch(e)
			{
				//alert(e.message);
			}
		}
	}
	,1500
);

