$(document).ready(function(){
	$('div.business').each(function(){
	var display = $('dd.website', this).text().replace('http://', '');
	if(display.length > 30)
		display = display.substring(0,30) + '...';
	
		$('dd.website', this).html('<a href="' + $('.website', this).text() + '" target="_blank">' + display + '</a>');
		//$('dd.email', this).html('<a href="mailto:' + $('dd.email', this).text() + '">Send an email</a><span>' + $('.email', this).text() + '</span>');
	});

	$('#printButton')
	.show()
	.click(function(){
		window.print();
	});
	
	$('.listing-card').mouseenter(function(){

    $(this).find('.listing-detail').fadeIn();  
  });
  $('.listing-card').mouseleave(function(){
   $(this).find('.listing-detail').fadeOut();   
  });
  
  $('p.desc').click(function(){
    
    $(this).closest('.business').find('.descFull').fadeIn();  
  });

  $('.descFull').click(function(){
    $(this).fadeOut();
  });
  
  
   $('#setCategories').click(function(){
        $('#locations').hide();
        $('#categories').fadeIn();
        $('ul.searchMenu li').removeClass('selected');
        $(this).addClass('selected');
        
        
  });
  $('#setLocations').click(function(){
        $('#categories').hide();
        $('#locations').fadeIn();
        $('ul.searchMenu li').removeClass('selected');
         $(this).addClass('selected');
  });

});	
