var $j = jQuery.noConflict();
	
	$j("map area").hoverIntent(function(event) {
	
			var obj=$j(this).attr('rel');
	   	showHideEvent(obj);
			
	}, function(){});
	
	$j(".grid .img a").hoverIntent(function(event) {
	
			var obj=$j(this).attr('rel');
			$j(".grid .img").removeClass('border');
			$j(this).parent().addClass('border');
	  	showHideEvent(obj);
	}, function(){});
	
	function showHideEvent(obj){
		$j('#about-us').removeClass();
		$j('#about-us').addClass('about-img');		
		$j('.detail-box').hide();		    
    $j('#'+obj).animate({
	    opacity: 1.0,
	    height: 'toggle'
	   }, 300, function() {
	  });
		$j('#about-us').addClass(obj);
	}
