jQuery.noConflict();

jQuery(function($) {
	//last reference
	jQuery('#content .referenceItem:last').css({"border-bottom":"none"});
	
	// gallery
	var $thumbs = $('#thumbs');
	if($thumbs[0]){
		 var gallery = $thumbs.galleriffic({
					imageContainerSel:      '#slideshow1',
					controlsContainerSel:   '#controls', captionContainerSel: '#caption' 
				});
	}

//segmenten hover
$(".segmentItem").hover(
      function () {
        $(this).attr("id", "hovered");
      }, 
      function () {
        $(this).removeAttr("id");
      }
    );

});

