/* DETECT IE7 function */
function browserIsIE7(){
   return (/MSIE (7)/.test(navigator.userAgent) && navigator.platform == "Win32"); // returns true or false
}

$(document).ready(function() {
    $("img.popup").each(function() {
        var src = $(this).attr('src');
        var a = $('<a/>').attr('href', src).attr('id', 'DynacontentPopupImage');
        $(this).wrap(a);
		if(browserIsIE7()) {
			$(this).fancybox({
				'zoomOpacity'			: true,
				'overlayShow'			: true,
				'zoomSpeedIn'			: 600,
				'zoomSpeedOut'			: 600
			});
		}
    });
	if(!browserIsIE7()) {
		$("a#DynacontentPopupImage").fancybox({
			'zoomOpacity'			: true,
			'overlayShow'			: true,
			'zoomSpeedIn'			: 600,
			'zoomSpeedOut'			: 600
		});
	}
});
