/**
 * 
 *Insight Partners scripts for IE7+ formatting and pop-up for IPC site.
 * 
 * 
 *
 */
$(document).ready(function(){
	$(".ipc_alert").click(function(event){
		if(confirm("You are now leaving the Insight Partners Consulting Web site. Insight Partners Consulting does not control nor endorse the content of the external Web site. The Terms and Conditions and Privacy Policy of the external site may differ from the Terms and Conditions and Privacy Policy of Insight Partners Consutling. To remain at our site, click cancel. To continue to the external site, click OK. Thank you for visiting Insight Partners.")){
			document.location = "http://www.insightpartnersconsulting.com/";
			return true;
		} else return false;
	});

	if($.browser.msie){ 
		$(function(){
			$("ul.r_template li").css("float","left");
			$("div.register_form").removeClass("register_form").addClass("ie_register_form");
			$(".client li").css("float","left");
		});
	};
});