jQuery(document).ready(function(){

  //PORTFOLIO INFO BUTTON SLIDE-TOGGLE
  $('#infoButton a').click(function(){
    $('.info').slideToggle('slow');
    return false;
  });

  //PORTFOLIO CYCLING
	if($('#structure p').length > 0) {
		$('#structure p').cycle({
	    fx: 'fade',
	    timeout: 6500,
	    speed: 2000,
	    pager: '#pager',
	    pause: 1
	  });
	} else {
		$('#structure').cycle({
	    fx: 'fade',
	    timeout: 6500,
	    speed: 2000,
	    pager: '#pager',
	    pause: 1
	  });		
	}


  //CONTACT MAPS
  $('.mapContent').hide();
  $('.mapLink').hover(function(){
      var id = $(this).attr('id');
      $('.mapContent').hide();
      $('#' + id + '_map').show(); 
  });

  //NAVIGATION
  /*$('ul#viewAllProducts').superfish({
      pathClass: 'current'
  });*/

});

