	 
	 //////////////////////////////////////////////////////////////// script Typo //////////////////////////////////////////////	
		Cufon.replace('h1')('h4');

    //////////////////////////////////////////////////////////////// script to Toggle FORM SELECT AND Idiom MENU //////////////////////////////////////////////	
		$(document).ready(function() {
				$("#subject, #langs, #langs_a").msDropDown();
					})					


	//////////////////////////////////////////////////////////////// script to Toggle FAQ //////////////////////////////////////////////	
//	$(document).ready(function(){
		//Hide (Collapse) the toggle containers on load
	 /*	$(".faq_answer").hide();
		$("#fisrt p").show();
		$("#fisrt a").css('font-weight','bold');
				$("#fisrt a").toggle(function(){
				$(this).css('font-weight','normal');
				}, function () {
				$(this).css('font-weight','bold');
		});
			$("#fisrt a").click(function(){
			$(this).next("#fisrt p").slideToggle("normal");
			});
		//Switch the "Open" and "Close" state per click
			$(".faq_ask").toggle(function(){
				$(this).css('font-weight','bold');
				}, function () {
				$(this).css('font-weight','normal');
		});
		//Slide up and down on click
		$(".faq_ask").click(function(){
			$(this).next(".faq_answer").slideToggle("normal");
	});
				}); 
*/


// Rounding corners in IE
if (/MSIE (\d+\.\d+);/.test(navigator.userAgent))
	{ //test for MSIE x.x;
		//var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
		//alert (ieversion);
		window.onload = function() {
		var settings = {
		  tl: { radius: 10 },
		  tr: { radius: 10 },
		  bl: { radius: 10 },
		  br: { radius: 10 },
		  antiAlias: true
		}

		var divObj = document.getElementById("b2b");

		curvyCorners(settings, divObj);
	  }
	}

  
