var isIE = ($.browser.msie);

$(document).ready(function() {
	if (isIE) {
		$("a.group").fancybox({
			'hideOnContentClick': false,
			'frameWidth': 415,
			'frameHeight': 325
		});
	} else {
		$("a.group").fancybox({
			'hideOnContentClick': false,
			'frameWidth': 370,
			'frameHeight': 275
		});
	}
	
	if (isIE) {
		$("a.group2").fancybox({
			'hideOnContentClick': false,
			'frameWidth': 415,
			'frameHeight': 425
		});
	} else {
		$("a.group2").fancybox({
			'hideOnContentClick': false,
			'frameWidth': 370,
			'frameHeight': 375
		});
	}
});



