var j=jQuery.noConflict();
j(document).ready(function() {
	j(".scrollable").scrollable({ size: 1 ,clickable:false}).circular();
	
	j("#map").css({ display:"none"	});
	var cContent = j("div.two");
	if (j.browser.msie && (j.browser.version.substr(0,1)=="6")) j(".conteiner").css({height:parseInt(cContent.outerHeight(true)+268)+"px"});
	j("#map-link").click(function(){
	  	j(this).next("#map").slideToggle("slow", function (){
	  		if (j.browser.msie && (j.browser.version.substr(0,1)=="6")) j(".conteiner").css({height:parseInt(cContent.outerHeight(true)+268)+"px"})
	  	});
	  	return false;
	});

});
