BLRollOver({
	'butn-join-today':[ 'http://cache.images.members-access.com/rp20/butn-join-today.png',
'http://cache.images.members-access.com/rp20/butn-join-today-over.png' ],
	'butn-check':[ 'http://cache.images.members-access.com/rp20/butn-join-check.png', 'http://cache.images.members-access.com/rp20/butn-join-check-over.png' ],
	'butn-phone':[ 'http://cache.images.members-access.com/rp20/butn-join-phone.png', 'http://cache.images.members-access.com/rp20/butn-join-phone-over.png' ],
	'butn-declined':[ 'http://cache.images.members-access.com/rp20/butn-join-declined.png', 'http://cache.images.members-access.com/rp20/butn-join-declined-over.png' ],
	'butn-home': 			[ 'http://cache.images.members-access.com/rp20/butn-home.png', 'http://cache.images.members-access.com/rp20/butn-home-over.png' ],
	'butn-members':			[ 'http://cache.images.members-access.com/rp20/butn-members.png', 'http://cache.images.members-access.com/rp20/butn-members-over.png' ],
	'butn-topranked':		[ 'http://cache.images.members-access.com/rp20/butn-topranked.png', 'http://cache.images.members-access.com/rp20/butn-topranked-over.png' ],	
	'butn-pvnetwork':		[ 'http://cache.images.members-access.com/rp20/butn-pvnetwork.png', 'http://cache.images.members-access.com/rp20/butn-pvnetwork-over.png' ],	
	'butn-extras':			[ 'http://cache.images.members-access.com/rp20/butn-extras.png', 'http://cache.images.members-access.com/rp20/butn-extras-over.png' ],	
	'butn-bookmark':		[ 'http://cache.images.members-access.com/rp20/butn-bookmark.png', 'http://cache.images.members-access.com/rp20/butn-bookmark-over.png' ],
	'butn-access':			[ 'http://cache.images.members-access.com/rp20/butn-access.png', 'http://cache.images.members-access.com/rp20/butn-access-over.png' ],
	'butn-modelsearch': 	[ 'http://cache.images.members-access.com/rp20/butn-search.png','http://cache.images.members-access.com/rp20/butn-search-over.png'],
	'footer-butn-top': 		[ 'http://www.cfnmmax.com/s3/images/footer-butn-top.gif','http://www.cfnmmax.com/s3/images/footer-butn-top-over.gif'],
	'footer-butn-members': 	[ 'http://www.cfnmmax.com/s3/images/footer-butn-members.gif','http://www.cfnmmax.com/s3/images/footer-butn-members-over.gif'],
	'footer-butn-join': 	[ 'http://www.cfnmmax.com/s3/images/footer-butn-join.gif','http://www.cfnmmax.com/s3/images/footer-butn-join-over.gif'],
	'footer-butn-more': 	[ 'http://www.cfnmmax.com/s3/images/footer-butn-more.gif','http://www.cfnmmax.com/s3/images/footer-butn-more-over.gif']
});


/*
 * FIXES FOR LARGE SUMMARY 10/15/08
 */

jQuery(document).ready(function() {
	var storyPopup =
	
	'<div id="storyPopup">' +
		'<div class="header">' +
			'<a class="closeMe" href="javascript:storyTextPopupClose();">close</a>' +
		'</div>' +
		'<div class="middle">' + 
			'<div class="content">' +
			'</div>' +
		'</div>' +
		'<div class="footer"></div>' +
	'</div>';
	
	
	$('#mainContainer').append(storyPopup);
	if (jQuery.browser.msie)
		$('#storyPopup').css('visibility', 'hidden');
	else
		$('#storyPopup').hide(0);
	// get the vertical scroll position of the browser
	window.scrollTop = function() {
		if (typeof window.pageYOffset != 'undefined')
			return window.pageYOffset;
		else if (typeof document.documentElement.scrollTop != 'undefined' && document.documentElement.scrollTop > 0)
			return document.documentElement.scrollTop;
		else if (typeof document.body.scrollTop != 'undefined')
			return document.body.scrollTop
		return 0;
	}
	window.storyTextPopup = function(id) {
		if ($('#'+id).length) {
			var popupContent = '';
			popupContent += '<h1>' + $('h1', '#'+id).html() + '</h1>';
			popupContent += $('.full', '#'+id).html();
			$('#storyPopup .content').html(popupContent);
			$('#storyPopup').css('top', scrollTop());
			if (jQuery.browser.msie)
				$('#storyPopup').css('visibility', 'visible');
			else
				$('#storyPopup').show('fast');
		}
	}
	window.storyTextPopupClose = function(id) {
		if (jQuery.browser.msie)
			$('#storyPopup').css('visibility', 'hidden');
		else
			$('#storyPopup').hide('fast');
	}
	$('.summary').each(function(i) {
		var caption = $('h1', $(this)).html();

		// find summary sections with .short and .full sections only
		if ($('.short', $(this)).length &&
			$('.full', $(this)).length &&
			$('.short', $(this)).html() != $('.full', $(this)).html()) {
			// set an id for the .full section so we don't have to search for it
			var fullId = 'storyID_00' + i;
			$(this).attr('id', fullId);
			// create view more link
			$('.short', $(this)).append('<a href="javascript:storyTextPopup(\''+ fullId +'\')">View More of Story...</a>');
		}
	});
});