$(document).ready(function () { 
	$(".fbh a").each(function () {
			this.href = this.href.replace('.html', '-fb.html');
	});
	$(".fb a").each(function () {
			this.href = this.href + '&agent=fb';
	});
	$(".fb a, .fbh a").addClass('iframe');
	$(".fb a").fancybox({ 'hideOnContentClick': false, 'overlayShow': true,'frameWidth': 700});
	$(".fbh a").fancybox({ 'hideOnContentClick': false, 'overlayShow': true, 'frameWidth': 700});
});