$(document).ready( function() {
	$('a').each(function() {
		if (this.href.indexOf('popup') > -1) {
			this.href =  this.href + ((this.href.indexOf('?')>-1) ? '&':'?') + 'width=550&height=520';
			this.className = "thickbox";
			}
	});
	$('a.lightbox').lightBox({fixedNavigation:true});
});
