// Script for navigation in IE6
$(document).ready(function(){
	var IE6 = (navigator.userAgent.indexOf("MSIE 6") >= 0) ? true: false;
	
	if (IE6) {
		$("#pri_navigation li").hover(function(){
			$("div", $(this)).addClass("js");
			$(this).addClass("ie6hover");
		},function(){
			$(this).removeClass("ie6hover");
			$("div", $(this)).removeClass("js");
		});
	}
});

// $(document).ready(function(){
// 	$($('#social_links li a[href*=http://boomerang.cienacommunity.com/cn-boomhome]').parent().get(0)).remove();
// });
