// Expander implementation and other index page Javascript actions
$(document).ready ( function () {

	//if ($('.deal-details p').first().html().trim() == '&nbsp;') {
	//	$('.deal-details p').first().remove();
	//}

	$('.deal-details').expander({
		slicePoint : 0,
		expandText : '<a href="#" class="show_more">Read More About this deal</a>',
		expandPrefix : '',
		expandPostfix : '<a href="/deals" class="view_more_deals">View More Smartsearch Deals</a>',
		userCollapseText: 'Close this deal'
	});
    $('#printer-link').click(function (ev) { ev.preventDefault(); window.open(this.href); });
});

