function tagline(h2){
	var text = h2.text(), name = text.split('of a ');
	text = name[0] + 'of a <span>' + name[1] + '</span>';
	h2.html(text);
}

$(function(){
	tagline($('#logo+h2'));
	
	if( $('li').length > 0 ) $('li:last-child').addClass('last-child');
	if( $('*[slider="yes"]').length > 0 ) $('*[slider="yes"]').carousel({ 'slideshow_start': false, 'hover_pause': false });
})
