$(document).ready(function () {
	$('.lightbox').lightbox({fitToScreen: true});
	
	$('#searchResults p.resButton').live({
		mouseover : function() {
			$(this).addClass('resButtonHover');
		},
		mouseout : function() {
			$(this).removeClass('resButtonHover');
		}
	});

	$('p.resButtonWide').live({
		mouseover : function() {
			$(this).addClass('resButtonWideHover');
		},
		mouseout : function() {
			$(this).removeClass('resButtonWideHover');
		}
	});
});

