startUrl=(window.location).toString();
splitUrl=startUrl.split("/");
myUrl="";
for(i=0;i<(splitUrl.length)-1 ;i++) {
   myUrl=myUrl+splitUrl[i];
   if (i!=(splitUrl.length)-2){
       myUrl=myUrl+"/";
   }
}
abspath=myUrl;


var ie7=null;
var ie6=null;
var imgPath = 'img/gallery/images/';
$(document).ready(function(){
	((document.all)&&(navigator.appVersion.indexOf("MSIE 7.")!=-1)) ? (ie7=true) : (ie7=false);
	((document.all)&&(navigator.appVersion.indexOf("MSIE 6.")!=-1)) ? (ie6=true) : (ie6=false);	
});

$(window).load(function() {
	intro.open();
	});


function setLayout(){
	var h_wp=$(window).height()-29;
	var w_wp=$(window).width();
	$('#layout').height(h_wp).show();
	$('#footer').css({top:h_wp});
	$('#footer').css({visibility:'visible'});
	$('#container').css({ top:(h_wp - 600)/2, left: (w_wp - 940)/2 }).fadeIn(1200);
	hp.open();
		
	$(window).resize(function(){
		var h_wp=$(window).height()-29;
		var w_wp=$(window).width();
		$('#layout').height(h_wp);
		$('#footer').css({top:h_wp});
		$('#container').css({ top:(h_wp - 600)/2, left: (w_wp - 940)/2 });
	});	
}; 

var intro = {
	setLayout : function() {
		var h_wp=$(window).height();
		var w_wp=$(window).width();
		$('#introContainer').css({ top:(h_wp - 288)/2, left: (w_wp - 512)/2 });
		intro.open();
		},
	open : function() {
		$('#introContainer a.intro').media({bgColor:'#000000', width:'100%', height:'100%'});
		},
	close : function() {
		$('#introContainer').remove();
		loadXML();
		setLayout();
		menu.listen();
		}
	}

var menu = {
	listen : function() {
		$('.menu a').click(function(e) {
			if(!$(this).parent().hasClass('active')) {
				e.preventDefault();
				$('.menu li').removeClass('active');
				$(this).parent().addClass('active');
				var goTo = $(this).attr('class'); 
				switch(curPage) {
					case('hp'):
						hp.close(goTo);
						break;
					case('gallery'):
						gallery.close(goTo);
						break;
					case('concept'):
						concept.close(goTo);
						break;
					case('video'):
						video.close(goTo);
						break;
					}
				}
		});
	}
}

var hp = {
	open : function() {
		curPage = 'hp';
		$('#home .container').fadeIn('slow', function() {
			$('#bars').fadeIn('slow', function() {
				$('#box').fadeIn('slow', function() {
					$('#logo-hp').fadeIn('slow', function() {
						$('#box-bars').fadeIn('slow', function() {
							$('.menu').fadeIn('slow');
							});
						});
					});
				});
			});
	},	
	close : function(goTo) {
		$('#home .container').fadeOut('slow');
		$('.menu').fadeOut('slow', function() {
			$('#home img').hide();
			switch(goTo) {
				case('gallery'):
					gallery.open();
					break;
				case('concept'):
					concept.open();
					break;
				case('video'):
					video.init();
					break;
				}
			});
		}
}

var concept = {
	open : function() {
		curPage = 'concept';
		$('.menu').css({top:28, left:188});
		$('#concept').fadeIn('slow');
		$('#logo-concept').fadeIn('slow', function() {
			$('#concept-bars').fadeIn('slow', function() {
				$('#concept-txtWrapper').fadeIn('slow', function() {
					$('.menu').fadeIn('slow');
					$('#concept-txt').fadeIn('slow');
					});
				});
			});
		if(ie6) {$('#logo-concept').pngFix()}
		},
	close : function(goTo) {
		$('#concept').fadeOut('slow');
		$('.menu').fadeOut('slow', function() {
			$('#concept').children().hide();
					switch(goTo) {
						case('gallery'):
							gallery.open();
							break;
						case('video'):
							video.init();
							break;
						}
				});
		}
	}
	
	
var gallery = {
	open : function() {
		curPage = 'gallery';
		$('.menu').css({top:28, left:188});
		$('#gallery').fadeIn('slow');
		$('#logo-gallery').fadeIn('slow', function() {
			$('#gallery-bars').fadeIn('slow', function() {
				$('#galleryDates').fadeIn('slow', function() {
					$('.menu').fadeIn('slow');
					$('#galleryWrapper').fadeIn('slow', function() {
						gallery.init();
						gallery.listen();
						$('#counter').fadeIn('slow');
						});
					});
				});
			});
		if(ie6) {$('#logo-gallery').pngFix()}
		},
	init : function() {
		$('p.caption').text('');
		gallery.currItem = 1;
		gallery.currEvent = $('#events a.active').attr('id');
		gallery.items = $(gallery.xmlFile).find('event[name='+gallery.currEvent+'] image');
		$('#counter span#total').text(gallery.items.length);
		galleryClass = $(gallery.items).eq(0).attr('type');
		$('#gallery').removeClass().addClass(galleryClass);
		gallery.openImg(gallery.currItem);
		},
	close : function(goTo) {
		$('#gallery').fadeOut('slow');
		$('.menu').fadeOut('slow', function() {
			$('#gallery').children().hide();
			$('#counter').hide();
			$('#imgHolder img').remove();
					switch(goTo) {
						case('concept'):
							concept.open();
							break;
						case('video'):
							video.init();
							break;
						}
				});
		},
	openImg : function(n) {
		gallery.currItem = n = (n == 0) ? gallery.items.length : (n > gallery.items.length) ? 1 : n;
		if(gallery.status && gallery.status!=$(gallery.items).eq(gallery.currItem-1).attr('type')) {
			$('#imgHolder img').remove();
			gallery.changeBg(gallery.status);
			}
		var pic = new Image();
		picSrc = $(gallery.items).eq(gallery.currItem-1).attr('src');
		caption = $(gallery.items).eq(gallery.currItem-1).attr('caption');
		gallery.status = $(gallery.items).eq(gallery.currItem-1).attr('type');
		$(pic).load(function(){
			$('p.caption').text(caption);
			$('#imgHolder')
				.append(pic)
				.find('img')
				.fadeIn('slow', function() {
					if($('#imgHolder img').length > 1) {  //remove first image from DOM
						$('#imgHolder img:first').remove();
						}
					$('#counter span#current').text(gallery.currItem);
					});
				});
		$(pic).attr({src:imgPath + gallery.currEvent +'/' + picSrc});
		},
	listen : function() {
		$('#events a').click(function(e) {
			$('#events a').removeClass('active');
			$(this).addClass('active');
			gallery.init();
		});
		},
	browse : function(n) {
		gallery.openImg(gallery.currItem + n);
		},
	changeBg : function(status) {
		if(status == 'ver') {
			$('#gallery').removeClass().addClass('hor');
			}
		else {
			$('#gallery').removeClass().addClass('ver');
			}
		}
	}

var video = {
	init : function() {
		video.current = $('#videoDates a.active').attr('id');
		$('#videoWrapper1').removeClass().addClass(video.current);
		switch(video.current) {
			case('hongkong'):
				video.file = 'dgset_hongkong.flv';
				video.width = 480;
				video.height = 360;
				break;			
			case('firenze'):
				video.file = 'dgset_firenze.flv';
				video.width = 500;
				video.height = 281;
				break;
			case('madrid'):
				video.file = 'dgset_madrid.flv';
				video.width = 500;
				video.height = 281;
				break;
			case('tokyo'):
				video.file = 'dgset_tokyo.flv';
				video.width = 500;
				video.height = 281;
				break;
			case('miami'):
				video.file = 'dgset_miami.flv';
				video.width = 500;
				video.height = 270;
				break;
			case('munich'):
				video.file = 'dgset_monaco.flv';
				video.width = 500;
				video.height = 281;
				break;
			case('seoul'):
				video.file = 'dgset_seoul.flv';
				video.width = 500;
				video.height = 281;
				break;
            case('mosca'):
				video.file = 'dgset_mosca.flv';
				video.width = 480;
				video.height = 360;
				break;
			case('london'):
				video.file = 'dgset_londra.flv';
				video.width = 480;
				video.height = 360;
				break;
			}
		video.open();
		},
	open : function() {
		curPage = 'video';
		$('.menu').css({top:28, left:188});
		$('#video').fadeIn('slow');
		$('#logo-video').fadeIn('slow', function() {
			$('#video-bars').fadeIn('slow', function() {
				$('#videoDates').fadeIn('slow', function() {
					$('.menu').fadeIn('slow');
					$('#videoWrapper1').fadeIn('slow', function() {
						video.startPlayer();
					video.listen();
					});
				});
			});
		});
		if(ie6) {$('#logo-video').pngFix()}
	},
	startPlayer : function() {
		$('#videoWrapper2').media({
				width:     video.width,
				height:    video.height,
				bgColor: 'transparent',
				autoplay:  true,
				params:    {wmode : 'transparent',scale:'noscale', allowfullscreen:'true'},
				attrs :	{ id : 'player', wmode : 'transparent',scale:'noscale', allowfullscreen:'true' },
				src:       'swf/player.swf',
				flashvars:  {file: video.file, streamer: 'rtmp://cp70242.edgefcs.net/ondemand/voddolcegabbana/dgset', skin: 'swf/stylish.swf', image: 'img/video/bg_'+video.current+'.jpg', autostart: true, controlbar: 'over', frontcolor :"ffffff", backcolor: "000000", lightcolor : "FFFFFF", overstretch : false,bufferlength : 5, usefullscreen : true},
				caption:   false
			});
		$('p#cpt_'+video.current).show();
	},
	listen : function() {
		$('#videoDates a').not($('a.active')).click(function(e) {
			$('#videoDates a').removeClass('active');
			$(this).addClass('active');
			$('p.videoCaption').hide();
			video.init();
		});
		},
	close: function(goTo) {
		$('#video').fadeOut('slow');
		$('.menu').fadeOut('slow', function() {
			$('#video').children().hide();
			$('p.videoCaption').hide();
			$('#videoWrapper2').empty(); 		//remove movie
					switch(goTo) {
						case('concept'):
							concept.open();
							break;
						case('gallery'):
							gallery.open();
							break;
						}
				});
		}
}


var invite = {
	open : function(target) {
		backgroundDiv = "<div class='overlay'></div>";
		contentDiv = "<div class='invite'><a class='close' href='#'>CLOSE</a></div>";
		$('body').append(backgroundDiv);
		$('body').append(contentDiv);
		$('div.overlay').css('opacity',0.6);
		
		var pic = new Image();
		$(pic).load(function(){
			$('.invite')
				.css('opacity', 0)
				.append(pic)
				.css({
					'top': ($(window).height() - $(pic).height() - 15) / 2,
					'left': ($(window).width() - $(pic).width()) / 2
					})
				.fadeTo('slow', 1, function() {
					$('html').bind('click', invite.close);
					});
				});
		$(pic).attr({src:'img/invites/'+target+'.jpg'});
	},
	close : function() {
		$('div.invite').fadeOut('fast', function() {
			$('div.overlay').fadeOut('fast', function() {
				$('div.invite').remove();
				$('div.overlay').remove();
			});
		});
	}
}

function loadXML() {
	$.ajax({
        type: "GET",
        url: "gallery.xml",
        dataType: "xml",
        success: function(xmlData) {
			gallery.xmlFile = xmlData;
			},
		/*complete : function(xmlData) {
			gallery.events = $(gallery.xmlFile).find('event[name=madrid] image');
			alert(gallery.events.length);
			},*/
		error:function(){
			alert('Error loading xml data. Please, reload this page and try again.')
			}	
		});
	}

function MM_showHideLayers() { 
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) 
  with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'block':(v=='hide')?'none':v; }
    obj.display=v; }
}


/********************** UTILS ************************/
//media
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(6($){$.3.4=6(d,e,f){s X.1o(6(){5(10 d==\'6\'){f=e;e=d;d={}}2 o=22(X,d);5(10 e==\'6\')e(X,o);2 r=28();2 m=r.3C(o.8)||[\'\'];o.L?m[0]=o.L:m.37();v(2 i=0;i<m.11;i++){3=m[i].1F();5(1a(3[0]))3=\'3\'+3;5(!$.3.4[3])2x;2 a=$.3.4[3+\'1v\'];5(!o.u)o.u={};5(a){2 b=a.12==\'1b\';o.u[a.12||\'18\']=b?(o.18?1:0):o.18?19:1Y}2 c=$.3.4[3](X,o);c.1V(\'1S\',o.G).y(o.y);5(10 f==\'6\')f(X,c[0],o,a.H);36}})};$.3.4.2Z=6(a,b){5(!a||!b||!$.3.4.t.F[b])s;a=a.1F();5(1a(a[0]))a=\'3\'+a;$.3.4[a]=$.3.4[b];$.3.4[a+\'1v\']=$.3.4.t.F[b]};$.3.4.t={y:1J,z:1J,1H:1,18:0,G:\'#2K\',u:{},P:{},D:{},1i:\'7\',1p:Z,25:\'1B.Y\',26:\'1B.Y\',A:{1w:\'19\',1z:\'19\',1x:\'24\',13:\'0.9\',1A:Z,1s:Z,1c:Z,1q:Z}};$.3.4.t.F={S:{H:\'S\',J:\'20,1e,Y\',N:{17:\'16:3q-3n-1T-3i-3g\',L:\'T/x-1P\',1O:\'Q://35.32.R/2X/1M/2V/S/2U.1K#13=\'+$.3.4.t.1i},M:{L:\'T/x-1M-S\',15:\'Q://U.2O.R/2M/2L\'}},1k:{H:\'1k\',J:\'2J,2I,2G,2F,2D,2C,2B,2A,2y,2w,2u,2t,2s,2r,2p,2n,2l,2k,2h,2g,2e,4l,4e,4b\',N:{17:\'16:4a-49-46-45-41\',1O:\'Q://U.27.R/3Y/3U.1K\'},M:{15:\'Q://U.27.R/1k/3S/\'}},3R:{H:\'23\',J:\'3Q,3P,3O,3N,3L,3J,3G\',12:\'1b\',N:{17:\'16:3F-3E-1T-3D-3B\'},M:{L:\'3A/x-3z-3y-3x\',15:\'Q://U.23.R/3v/\'}},1X:{H:\'1X\',J:\'3u,3t,3s,3r\',12:\'1b\',1W:\'3p\',N:{17:\'16:3o-3m-3l-3k-3j\',L:\'T/x-1P\'},M:{L:$.1j.3h&&1Q()?\'T/x-3f-3e\':\'T/x-3d\',15:\'Q://U.3c.R/3b/3a/\'}},W:{H:\'W\',J:\'V,39\'},A:{H:\'A\',J:\'14\'}};6 1Q(){2 a=38.34;v(i=0;i<a.11;i++){2 b=a[i];5(b[\'33\']==\'31-30.2Y\')s 19}s 1Y}2 l=1;v(2 n C $.3.4.t.F){2 q=$.3.4.t.F[n].J;$.1o(q.2W(\',\'),6(i,o){5(1a(o[0]))o=\'3\'+o;$.3.4[o]=$.3.4[n]=1L(n);$.3.4[o+\'1v\']=$.3.4.t.F[n]})};6 28(){2 a=\'\';v(2 b C $.3.4.t.F){5(a.11)a+=\',\';a+=$.3.4.t.F[b].J};s 1N 2T(\'\\\\.(\'+a.2S(/,/g,\'|\')+\')\\\\b\')};6 1L(c){s 6(a,b){s 1l(a,b,c)}};6 1a(c){s\'2R\'.2Q(c)>-1};6 22(d,e){e=e||{};2 f=$(d);2 g=d.2P||\'\';2 j=$.1m?f.1m():$.1I?f.2N():{};j=j||{};2 w=j.y||1G(((g.1R(/w:(\\d+)/)||[])[1]||0));2 h=j.z||1G(((g.1R(/h:(\\d+)/)||[])[1]||0));5(w)j.y=w;5(h)j.z=h;5(g)j.K=g;2 a=$.3.4.t;2 b=(($.1I||$.1m)&&$.3.4.t.1H)?e:j;2 c=b==e?j:e;2 p={u:{G:e.G||$.3.4.t.G}};2 k=$.1n({},a,b,c);$.1o([\'P\',\'u\',\'D\',\'A\'],6(i,o){k[o]=$.1n({},p[o]||{},a[o]||{},b[o]||{},c[o]||{})});5(10 k.I==\'1U\')k.I=f.2H();k.8=k.8||f.1u(\'3w\')||f.1u(\'8\')||\'2E\';s k};$.3.4.Y=6(b,c){5(10 1Z==\'1U\'){5(c.D){2 a=[];v(2 f C c.D)a.E(f+\'=\'+c.D[f]);5(!c.u)c.u={};c.u.D=a.1f(\'&\')}s 1l(b,c,\'S\')}2 d=b.B?(\' B="\'+b.B+\'"\'):\'\';2 e=c.K?(\' 1h="\'+c.K+\'"\'):\'\';2 g=$(\'<O\'+d+e+\'>\');$(b).1g(g).1t();2 h=1N 1Z(c.8,\'2z\'+l++,c.y,c.z,c.1i,c.G);5(c.1p)h.3H(c.1p);v(2 p C c.u)5(p!=\'G\')h.3I(p,c.u[p]);v(2 f C c.D)h.2v(f,c.D[f]);h.3K(g[0]);5(c.I)$(\'<O>\').1d(g).V(c.I);s g};$.3.4.20=$.3.4.1e=6(a,b){2 c=b.8;2 d=/\\.1e\\b/i.3M(c)?$.3.4.t.26:$.3.4.t.25;b.8=d;b.8=b.8+\'?1E=\'+c;b.D=$.1n({},{1E:c},b.D);s $.3.4.Y(a,b)};$.3.4.14=6(a,b){5(!21.1r||!21.1r.1y){5($.3.4.14.1C)s;$.3.4.14.1C=1;2q(\'2o 3T 2m 3V 1y.3W 3X.\');s}2 c={y:b.y,z:b.z,2j:b.G,1w:b.A.1w,1z:b.A.1z,1x:b.A.1x,13:b.A.13};2 d={1A:b.A.1A,1s:b.A.1s};2 e=a.B?(\' B="\'+a.B+\'"\'):\'\';2 f=b.B||\'2i\'+l++;2 g=b.K?(\' 1h="\'+b.K+\'"\'):\'\';2 h=$(\'<O\'+e+g+\'>\');$(a).1g(h).1t();1r.1y.3Z({40:b.8,1c:b.A.1c,1q:b.A.1q,B:f,2f:h[0],42:c,43:d});5(b.I)$(\'<O>\').1d(h).V(b.I);s h};6 1l(b,c,d){2 e=$(b);2 o=$.3.4.t.F[d];5(d==\'W\'){2 o=$(\'<W\'+\' y="\'+c.y+\'" z="\'+c.z+\'" >\');o.1u(\'8\',c.8);o.1V(\'1S\',o.G)}1D 5($.1j.2d){2 a=[\'<4h y="\'+c.y+\'" z="\'+c.z+\'" \'];v(2 f C c.P)a.E(f+\'="\'+c.P[f]+\'" \');v(2 f C o.N||{})a.E(f+\'="\'+o.N[f]+\'" \');a.E(\'></4d\'+\'4c\'+\'>\');2 p=[\'<2c H="\'+(o.1W||\'8\')+\'" 2b="\'+c.8+\'">\'];v(2 f C c.u)p.E(\'<2c H="\'+f+\'" 2b="\'+c.u[f]+\'">\');2 o=2a.29(a.1f(\'\'));v(2 i=0;i<p.11;i++)o.48(2a.29(p[i]))}1D{2 a=[\'<47 y="\'+c.y+\'" z="\'+c.z+\'" 4f="4g:44"\'];5(c.8)a.E(\' 8="\'+c.8+\'" \');v(2 f C c.P)a.E(f+\'="\'+c.P[f]+\'" \');v(2 f C o.M||{})a.E(f+\'="\'+o.M[f]+\'" \');v(2 f C c.u)a.E(f+\'="\'+c.u[f]+\'" \');a.E(\'></4i\'+\'4j\'+\'>\')}2 g=b.B?(\' B="\'+b.B+\'"\'):\'\';2 h=c.K?(\' 1h="\'+c.K+\'"\'):\'\';2 j=$(\'<O\'+g+h+\'>\');e.1g(j).1t();($.1j.2d||d==\'W\')?j.4k(o):j.V(a.1f(\'\'));5(c.I)$(\'<O>\').1d(j).V(c.I);s j}})(4m);',62,271,'||var|fn|media|if|function||src||||||||||||||||||||return|defaults|params|for|||width|height|silverlight|id|in|flashvars|push|players|bgColor|name|caption|types|cls|type|eAttrs|oAttrs|div|attrs|http|com|flash|application|www|html|iframe|this|swf|null|typeof|length|autoplayAttr|version|xaml|pluginspage|clsid|classid|autoplay|true|isDigit|autostart|initParams|appendTo|mp3|join|after|class|flashVersion|browser|quicktime|generate|metadata|extend|each|expressInstaller|userContext|Sys|onLoad|remove|attr|_player|inplaceInstallPrompt|framerate|Silverlight|isWindowless|onError|mediaplayer|warning|else|file|toLowerCase|parseInt|preferMeta|meta|400|cab|getGenerator|shockwave|new|codebase|oleobject|isFirefoxWMPPluginInstalled|match|backgroundColor|11cf|undefined|css|oUrl|winmedia|false|SWFObject|flv|window|getSettings|real||flvPlayer|mp3Player|apple|getTypesRegExp|createElement|document|value|param|msie|tiff|parentElement|tif|snd|AG|background|qti|qif|include|qtif|You|qt|alert|psd|m4a|mp4|mpeg|addVariable|mpg|continue|midi|movie_player_|mid|mov|gsm|bmp|unknown|au|aac|text|aiff|aif|ffffff|getflashplayer|go|data|adobe|className|indexOf|0123456789|replace|RegExp|swflash|cabs|split|pub|dll|mapFormat|mswmp|np|macromedia|filename|plugins|fpdownload|break|shift|navigator|pdf|MediaPlayer|Windows|microsoft|mplayer2|wmp|ms|444553540000|mozilla|96b8|00C04F79FAA6|B153|11d3|394A|ae6d|6BF52A52|url|d27cdb6e|wmv|wma|avi|asf|player|href|plugin|realaudio|pn|audio|0020AFBBCCFA|exec|B84B|8BE4|CFCDAA03|smil|useExpressInstall|addParam|smi|write|rv|test|rpm|rm|ram|ra|realplayer|download|must|qtplugin|the|js|script|qtactivex|createObjectEx|source|D3488ABDDC6B|properties|events|block|BC80|4B23|embed|appendChild|8C17|02BF25D5|3gp|ject|ob|3g2|style|display|object|em|bed|append|wav|jQuery'.split('|'),0,{}))
//pngfix
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(s($){3.1s.1k=s(j){j=3.1a({12:\'1m.1j\'},j);8 k=(n.P=="r 10 Z"&&U(n.v)==4&&n.v.E("14 5.5")!=-1);8 l=(n.P=="r 10 Z"&&U(n.v)==4&&n.v.E("14 6.0")!=-1);o(3.17.16&&(k||l)){3(2).L("1r[@m$=.M]").z(s(){3(2).7(\'q\',3(2).q());3(2).7(\'p\',3(2).p());8 a=\'\';8 b=\'\';8 c=(3(2).7(\'K\'))?\'K="\'+3(2).7(\'K\')+\'" \':\'\';8 d=(3(2).7(\'A\'))?\'A="\'+3(2).7(\'A\')+\'" \':\'\';8 e=(3(2).7(\'C\'))?\'C="\'+3(2).7(\'C\')+\'" \':\'\';8 f=(3(2).7(\'B\'))?\'B="\'+3(2).7(\'B\')+\'" \':\'\';8 g=(3(2).7(\'R\'))?\'1d:\'+3(2).7(\'R\')+\';\':\'\';8 h=(3(2).1c().7(\'1b\'))?\'19:18;\':\'\';o(2.9.y){a+=\'y:\'+2.9.y+\';\';2.9.y=\'\'}o(2.9.t){a+=\'t:\'+2.9.t+\';\';2.9.t=\'\'}o(2.9.w){a+=\'w:\'+2.9.w+\';\';2.9.w=\'\'}8 i=(2.9.15);b+=\'<x \'+c+d+e+f;b+=\'9="13:11;1q-1p:1o-1n;O:W-V;N:1l;\'+g+h;b+=\'q:\'+3(2).q()+\'u;\'+\'p:\'+3(2).p()+\'u;\';b+=\'J:I:H.r.G\'+\'(m=\\\'\'+3(2).7(\'m\')+\'\\\', D=\\\'F\\\');\';b+=i+\'"></x>\';o(a!=\'\'){b=\'<x 9="13:11;O:W-V;\'+a+h+\'q:\'+3(2).q()+\'u;\'+\'p:\'+3(2).p()+\'u;\'+\'">\'+b+\'</x>\'}3(2).1i();3(2).1h(b)});3(2).L("*").z(s(){8 a=3(2).T(\'N-S\');o(a.E(".M")!=-1){8 b=a.X(\'1g("\')[1].X(\'")\')[0];3(2).T(\'N-S\',\'1f\');3(2).Q(0).Y.J="I:H.r.G(m=\'"+b+"\',D=\'F\')"}});3(2).L("1e[@m$=.M]").z(s(){8 a=3(2).7(\'m\');3(2).Q(0).Y.J=\'I:H.r.G\'+\'(m=\\\'\'+a+\'\\\', D=\\\'F\\\');\';3(2).7(\'m\',j.12)})}1t 3}})(3);',62,92,'||this|jQuery||||attr|var|style|||||||||||||src|navigator|if|height|width|Microsoft|function|padding|px|appVersion|margin|span|border|each|class|alt|title|sizingMethod|indexOf|scale|AlphaImageLoader|DXImageTransform|progid|filter|id|find|png|background|display|appName|get|align|image|css|parseInt|block|inline|split|runtimeStyle|Explorer|Internet|relative|blankgif|position|MSIE|cssText|msie|browser|hand|cursor|extend|href|parent|float|input|none|url|after|hide|gif|pngFix|transparent|blank|line|pre|space|white|img|fn|return'.split('|'),0,{}));