//// JavaScript Document
//
//
//
//
//$(document).ready(function() {
//	 
//	//ACCORDION BUTTON ACTION (ON CLICK DO THE FOLLOWING)
//	$('h3.asw').click(function() {
//
//		//REMOVE THE ON CLASS FROM ALL BUTTONS
//		$('h3.asw').removeClass('on');
//		  
//		//NO MATTER WHAT WE CLOSE ALL OPEN SLIDES
//	 	$('div.ac').slideUp('normal');
//   
//		//IF THE NEXT SLIDE WASN'T OPEN THEN OPEN IT
//		if($(this).next().is(':hidden') == true) {
//			
//			//ADD THE ON CLASS TO THE BUTTON
//			$(this).addClass('on');
//			  
//			//OPEN THE SLIDE
//			$(this).next().slideDown('normal');
//		 } 
//		  
//	 });
//	  
//	
//	/********************************************************************************************************************
//	CLOSES ALL S ON PAGE LOAD
//	********************************************************************************************************************/	
//	$('.ac').hide();
//
//});

/*---------- Maphilight jQuery plugin (for Search page) ----------*/
(function($) {
	var has_VML, create_canvas_for, add_shape_to, clear_canvas, shape_from_area,
		canvas_style, fader, hex_to_decimal, css3color, is_image_loaded;
	has_VML = document.namespaces;
	has_canvas = document.createElement('canvas');
	has_canvas = has_canvas && has_canvas.getContext;
	
	if(!(has_canvas || has_VML)) {
		$.fn.maphilight = function() { return this; };
		return;
	}
	
	if(has_canvas) {
		fader = function(element, opacity, interval) {
			if(opacity <= 1) {
				element.style.opacity = opacity;
				window.setTimeout(fader, 10, element, opacity + 0.1, 10);
			}
		};
		
		hex_to_decimal = function(hex) {
			return Math.max(0, Math.min(parseInt(hex, 16), 255));
		};
		css3color = function(color, opacity) {
			return 'rgba('+hex_to_decimal(color.substr(0,2))+','+hex_to_decimal(color.substr(2,2))+','+hex_to_decimal(color.substr(4,2))+','+opacity+')';
		};
		create_canvas_for = function(img) {
			var c = $('<canvas style="width:'+img.width+'px;height:'+img.height+'px;"></canvas>').get(0);
			c.getContext("2d").clearRect(0, 0, c.width, c.height);
			return c;
		};
		add_shape_to = function(canvas, shape, coords, options) {
			var i, context = canvas.getContext('2d');
			context.beginPath();
			if(shape == 'rect') {
				context.rect(coords[0], coords[1], coords[2] - coords[0], coords[3] - coords[1]);
			} else if(shape == 'poly') {
				context.moveTo(coords[0], coords[1]);
				for(i=2; i < coords.length; i+=2) {
					context.lineTo(coords[i], coords[i+1]);
				}
			} else if(shape == 'circ') {
				context.arc(coords[0], coords[1], coords[2], 0, Math.PI * 2, false);
			}
			context.closePath();
			if(options.fill) {
				context.fillStyle = css3color(options.fillColor, options.fillOpacity);
				context.fill();
			}
			if(options.stroke) {
				context.strokeStyle = css3color(options.strokeColor, options.strokeOpacity);
				context.lineWidth = options.strokeWidth;
				context.stroke();
			}
			if(options.fade) {
				fader(canvas, 0);
			}
		};
		clear_canvas = function(canvas, area) {
			canvas.getContext('2d').clearRect(0, 0, canvas.width,canvas.height);
		};
	} else {
		document.namespaces.add("v", "urn:schemas-microsof t-com:vml");
		var style = document.createStyleSheet();
		var shapes = ['shape','rect', 'oval', 'circ', 'fill', 'stroke', 'imagedata', 'group','t extbox'];
		$.each(shapes, function(){
			style.addRule('v\\:' + this, "behavior: url(#default#VML); antialias:true");
		}); 
		
		create_canvas_for = function(img) {
			return $('<var style="zoom:1;overflow:hidden;display:block;width:'+img.width+'px;height:'+img.height+'px;"></var>').get(0);
		};
		add_shape_to = function(canvas, shape, coords, options) {
			var fill, stroke, opacity, e;
			fill = '<v:fill color="#'+options.fillColor+'" opacity="'+(options.fill ? options.fillOpacity : 0)+'" />';
			stroke = (options.stroke ? 'strokeweight="'+options.strokeWidth+'" stroked="t" strokecolor="#'+options.strokeColor+'"' : 'stroked="f"');
			opacity = '<v:stroke opacity="'+options.strokeOpacity+'"/>';
			if(shape == 'rect') {
				e = $('<v:rect filled="t" '+stroke+' style="zoom:1;margin:0;padding:0;display:block;position:absolute;left:'+coords[0]+'px;top:'+coords[1]+'px;width:'+(coords[2] - coords[0])+'px;height:'+(coords[3] - coords[1])+'px;"></v:rect>');
			} else if(shape == 'poly') {
				e = $('<v:shape filled="t" '+stroke+' coordorigin="0,0" coordsize="'+canvas.width+','+canvas.height+'" path="m '+coords[0]+','+coords[1]+' l '+coords.join(',')+' x e" style="zoom:1;margin:0;padding:0;display:block;position:absolute;top:0px;left:0px;width:'+canvas.width+'px;height:'+canvas.height+'px;"></v:shape>');
			} else if(shape == 'circ') {
				e = $('<v:oval filled="t" '+stroke+' style="zoom:1;margin:0;padding:0;display:block;position:absolute;left:'+(coords[0] - coords[2])+'px;top:'+(coords[1] - coords[2])+'px;width:'+(coords[2]*2)+'px;height:'+(coords[2]*2)+'px;"></v:oval>');
			}
			e.get(0).innerHTML = fill+opacity;
			$(canvas).append(e);
		};
		clear_canvas = function(canvas) {
			$(canvas).empty();
		};
	}
	shape_from_area = function(area) {
		var i, coords = area.getAttribute('coords').split(',');
		for (i=0; i < coords.length; i++) { coords[i] = parseFloat(coords[i]); }
		return [area.getAttribute('shape').toLowerCase().substr(0,4), coords];
	};
	
	is_image_loaded = function(img) {
		if(!img.complete) { return false; } // IE
		if(typeof img.naturalWidth != "undefined" && img.naturalWidth == 0) { return false; } // Others
		return true;
	}

	canvas_style = {
		position: 'absolute',
		left: 0,
		top: 0,
		padding: 0,
		border: 0
	};
	
	$.fn.maphilight = function(opts) {
		opts = $.extend({}, $.fn.maphilight.defaults, opts);
		return this.each(function() {
			var img, wrap, options, map, canvas, canvas_always, mouseover;
			img = $(this);
			if(!is_image_loaded(this)) { return window.setTimeout(function() { img.maphilight(opts); }, 200); }
			options = $.metadata ? $.extend({}, opts, img.metadata()) : opts;
			map = $('map[name="'+img.attr('usemap').substr(1)+'"]');
			if(!(img.is('img') && img.attr('usemap') && map.size() > 0 && !img.hasClass('maphilighted'))) { return; }
			wrap = $('<div>').css({display:'block',background:'url('+this.src+')',position:'relative',padding:0,width:this.width,height:this.height});
			img.before(wrap).css('opacity', 0).css(canvas_style).remove();
			if($.browser.msie) { img.css('filter', 'Alpha(opacity=0)'); }
			wrap.append(img);
			
			canvas = create_canvas_for(this);
			$(canvas).css(canvas_style);
			canvas.height = this.height;
			canvas.width = this.width;
			
			mouseover = function(e) {
				var shape, area_options;
				area_options = $.metadata ? $.extend({}, options, $(this).metadata()) : options;
				if(!area_options.alwaysOn) {
					shape = shape_from_area(this);
					add_shape_to(canvas, shape[0], shape[1], area_options);
				}
			};
			
			if(options.alwaysOn) {
				$(map).find('area[coords]').each(mouseover);
			} else {
				if($.metadata) {
					// If the metadata plugin is present, there may be areas with alwaysOn set.
					// We'll add these to a *second* canvas, which will get around flickering during fading.
					$(map).find('area[coords]').each(function() {
						var shape, area_options;
						area_options = $.metadata ? $.extend({}, options, $(this).metadata()) : options;
						if(area_options.alwaysOn) {
							if(!canvas_always) {
								canvas_always = create_canvas_for(img.get());
								$(canvas_always).css(canvas_style);
								canvas_always.width = img.width();
								canvas_always.height = img.height();
								img.before(canvas_always);
							}
							shape = shape_from_area(this);
							add_shape_to(canvas_always, shape[0], shape[1], area_options);
						}
					})
				}
				$(map).find('area[coords]').mouseover(mouseover).mouseout(function(e) { clear_canvas(canvas); });
			}
			
			img.before(canvas); // if we put this after, the mouseover events wouldn't fire.
			img.addClass('maphilighted');
		});
	};
	$.fn.maphilight.defaults = {
		fill: true,
		fillColor: '000000',
		fillOpacity: 0.2,
		stroke: true,
		strokeColor: 'ff0000',
		strokeOpacity: 1,
		strokeWidth: 1,
		fade: true,
		alwaysOn: false
	};
})(jQuery);
/*-------- Maphilight plugin End --------*/
// JQUERY MOUSEWHEEL
(function(b){function d(a){var f=[].slice.call(arguments,1),e=0;a=b.event.fix(a||window.event);a.type="mousewheel";if(a.wheelDelta)e=a.wheelDelta/120;if(a.detail)e=-a.detail/3;f.unshift(a,e);return b.event.handle.apply(this,f)}var c=["DOMMouseScroll","mousewheel"];b.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=c.length;a;)this.addEventListener(c[--a],d,false);else this.onmousewheel=d},teardown:function(){if(this.removeEventListener)for(var a=c.length;a;)this.removeEventListener(c[--a],
d,false);else this.onmousewheel=null}};b.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})})(jQuery);

//FANCYBOX
(function(b){var m,u,x,g,D,i,z,A,B,p=0,e={},q=[],n=0,c={},j=[],E=null,s=new Image,G=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,S=/[^\.]\.(swf)\s*$/i,H,I=1,k,l,h=false,y=b.extend(b("<div/>")[0],{prop:0}),v=0,O=!b.support.opacity&&!window.XMLHttpRequest,J=function(){u.hide();s.onerror=s.onload=null;E&&E.abort();m.empty()},P=function(){b.fancybox('<p id="fancybox_error">The requested content cannot be loaded.<br />Please try again later.</p>',{scrolling:"no",padding:20,transitionIn:"none",transitionOut:"none"})},
K=function(){return[b(window).width(),b(window).height(),b(document).scrollLeft(),b(document).scrollTop()]},T=function(){var a=K(),d={},f=c.margin,o=c.autoScale,t=(20+f)*2,w=(20+f)*2,r=c.padding*2;if(c.width.toString().indexOf("%")>-1){d.width=a[0]*parseFloat(c.width)/100-40;o=false}else d.width=c.width+r;if(c.height.toString().indexOf("%")>-1){d.height=a[1]*parseFloat(c.height)/100-40;o=false}else d.height=c.height+r;if(o&&(d.width>a[0]-t||d.height>a[1]-w))if(e.type=="image"||e.type=="swf"){t+=r;
w+=r;o=Math.min(Math.min(a[0]-t,c.width)/c.width,Math.min(a[1]-w,c.height)/c.height);d.width=Math.round(o*(d.width-r))+r;d.height=Math.round(o*(d.height-r))+r}else{d.width=Math.min(d.width,a[0]-t);d.height=Math.min(d.height,a[1]-w)}d.top=a[3]+(a[1]-(d.height+40))*0.5;d.left=a[2]+(a[0]-(d.width+40))*0.5;if(c.autoScale===false){d.top=Math.max(a[3]+f,d.top);d.left=Math.max(a[2]+f,d.left)}return d},U=function(a){if(a&&a.length)switch(c.titlePosition){case "inside":return a;case "over":return'<span id="fancybox-title-over">'+
a+"</span>";default:return'<span id="fancybox-title-wrap"><span id="fancybox-title-left"></span><span id="fancybox-title-main">'+a+'</span><span id="fancybox-title-right"></span></span>'}return false},V=function(){var a=c.title,d=l.width-c.padding*2,f="fancybox-title-"+c.titlePosition;b("#fancybox-title").remove();v=0;if(c.titleShow!==false){a=b.isFunction(c.titleFormat)?c.titleFormat(a,j,n,c):U(a);if(!(!a||a==="")){b('<div id="fancybox-title" class="'+f+'" />').css({width:d,paddingLeft:c.padding,
paddingRight:c.padding}).html(a).appendTo("body");switch(c.titlePosition){case "inside":v=b("#fancybox-title").outerHeight(true)-c.padding;l.height+=v;break;case "over":b("#fancybox-title").css("bottom",c.padding);break;default:b("#fancybox-title").css("bottom",b("#fancybox-title").outerHeight(true)*-1);break}b("#fancybox-title").appendTo(D).hide()}}},W=function(){b(document).unbind("keydown.fb").bind("keydown.fb",function(a){if(a.keyCode==27&&c.enableEscapeButton){a.preventDefault();b.fancybox.close()}else if(a.keyCode==
37){a.preventDefault();b.fancybox.prev()}else if(a.keyCode==39){a.preventDefault();b.fancybox.next()}});if(b.fn.mousewheel){g.unbind("mousewheel.fb");j.length>1&&g.bind("mousewheel.fb",function(a,d){a.preventDefault();h||d===0||(d>0?b.fancybox.prev():b.fancybox.next())})}if(c.showNavArrows){if(c.cyclic&&j.length>1||n!==0)A.show();if(c.cyclic&&j.length>1||n!=j.length-1)B.show()}},X=function(){var a,d;if(j.length-1>n){a=j[n+1].href;if(typeof a!=="undefined"&&a.match(G)){d=new Image;d.src=a}}if(n>0){a=
j[n-1].href;if(typeof a!=="undefined"&&a.match(G)){d=new Image;d.src=a}}},L=function(){i.css("overflow",c.scrolling=="auto"?c.type=="image"||c.type=="iframe"||c.type=="swf"?"hidden":"auto":c.scrolling=="yes"?"auto":"visible");if(!b.support.opacity){i.get(0).style.removeAttribute("filter");g.get(0).style.removeAttribute("filter")}b("#fancybox-title").show();c.hideOnContentClick&&i.one("click",b.fancybox.close);c.hideOnOverlayClick&&x.one("click",b.fancybox.close);c.showCloseButton&&z.show();W();b(window).bind("resize.fb",
b.fancybox.center);c.centerOnScroll?b(window).bind("scroll.fb",b.fancybox.center):b(window).unbind("scroll.fb");b.isFunction(c.onComplete)&&c.onComplete(j,n,c);h=false;X()},M=function(a){var d=Math.round(k.width+(l.width-k.width)*a),f=Math.round(k.height+(l.height-k.height)*a),o=Math.round(k.top+(l.top-k.top)*a),t=Math.round(k.left+(l.left-k.left)*a);g.css({width:d+"px",height:f+"px",top:o+"px",left:t+"px"});d=Math.max(d-c.padding*2,0);f=Math.max(f-(c.padding*2+v*a),0);i.css({width:d+"px",height:f+
"px"});if(typeof l.opacity!=="undefined")g.css("opacity",a<0.5?0.5:a)},Y=function(a){var d=a.offset();d.top+=parseFloat(a.css("paddingTop"))||0;d.left+=parseFloat(a.css("paddingLeft"))||0;d.top+=parseFloat(a.css("border-top-width"))||0;d.left+=parseFloat(a.css("border-left-width"))||0;d.width=a.width();d.height=a.height();return d},Q=function(){var a=e.orig?b(e.orig):false,d={};if(a&&a.length){a=Y(a);d={width:a.width+c.padding*2,height:a.height+c.padding*2,top:a.top-c.padding-20,left:a.left-c.padding-
20}}else{a=K();d={width:1,height:1,top:a[3]+a[1]*0.5,left:a[2]+a[0]*0.5}}return d},N=function(){u.hide();if(g.is(":visible")&&b.isFunction(c.onCleanup))if(c.onCleanup(j,n,c)===false){b.event.trigger("fancybox-cancel");h=false;return}j=q;n=p;c=e;i.get(0).scrollTop=0;i.get(0).scrollLeft=0;if(c.overlayShow){O&&b("select:not(#fancybox-tmp select)").filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one("fancybox-cleanup",function(){this.style.visibility="inherit"});
x.css({"background-color":c.overlayColor,opacity:c.overlayOpacity}).unbind().show()}l=T();V();if(g.is(":visible")){b(z.add(A).add(B)).hide();var a=g.position(),d;k={top:a.top,left:a.left,width:g.width(),height:g.height()};d=k.width==l.width&&k.height==l.height;i.fadeOut(c.changeFade,function(){var f=function(){i.html(m.contents()).fadeIn(c.changeFade,L)};b.event.trigger("fancybox-change");i.empty().css("overflow","hidden");if(d){i.css({top:c.padding,left:c.padding,width:Math.max(l.width-c.padding*
2,1),height:Math.max(l.height-c.padding*2-v,1)});f()}else{i.css({top:c.padding,left:c.padding,width:Math.max(k.width-c.padding*2,1),height:Math.max(k.height-c.padding*2,1)});y.prop=0;b(y).animate({prop:1},{duration:c.changeSpeed,easing:c.easingChange,step:M,complete:f})}})}else{g.css("opacity",1);if(c.transitionIn=="elastic"){k=Q();i.css({top:c.padding,left:c.padding,width:Math.max(k.width-c.padding*2,1),height:Math.max(k.height-c.padding*2,1)}).html(m.contents());g.css(k).show();if(c.opacity)l.opacity=
0;y.prop=0;b(y).animate({prop:1},{duration:c.speedIn,easing:c.easingIn,step:M,complete:L})}else{i.css({top:c.padding,left:c.padding,width:Math.max(l.width-c.padding*2,1),height:Math.max(l.height-c.padding*2-v,1)}).html(m.contents());g.css(l).fadeIn(c.transitionIn=="none"?0:c.speedIn,L)}}},F=function(){m.width(e.width);m.height(e.height);if(e.width=="auto")e.width=m.width();if(e.height=="auto")e.height=m.height();N()},Z=function(){h=true;e.width=s.width;e.height=s.height;b("<img />").attr({id:"fancybox-img",
src:s.src,alt:e.title}).appendTo(m);N()},C=function(){J();var a=q[p],d,f,o,t,w;e=b.extend({},b.fn.fancybox.defaults,typeof b(a).data("fancybox")=="undefined"?e:b(a).data("fancybox"));o=a.title||b(a).title||e.title||"";if(a.nodeName&&!e.orig)e.orig=b(a).children("img:first").length?b(a).children("img:first"):b(a);if(o===""&&e.orig)o=e.orig.attr("alt");d=a.nodeName&&/^(?:javascript|#)/i.test(a.href)?e.href||null:e.href||a.href||null;if(e.type){f=e.type;if(!d)d=e.content}else if(e.content)f="html";else if(d)if(d.match(G))f=
"image";else if(d.match(S))f="swf";else if(b(a).hasClass("iframe"))f="iframe";else if(d.match(/#/)){a=d.substr(d.indexOf("#"));f=b(a).length>0?"inline":"ajax"}else f="ajax";else f="inline";e.type=f;e.href=d;e.title=o;if(e.autoDimensions&&e.type!=="iframe"&&e.type!=="swf"){e.width="auto";e.height="auto"}if(e.modal){e.overlayShow=true;e.hideOnOverlayClick=false;e.hideOnContentClick=false;e.enableEscapeButton=false;e.showCloseButton=false}if(b.isFunction(e.onStart))if(e.onStart(q,p,e)===false){h=false;
return}m.css("padding",20+e.padding+e.margin);b(".fancybox-inline-tmp").unbind("fancybox-cancel").bind("fancybox-change",function(){b(this).replaceWith(i.children())});switch(f){case "html":m.html(e.content);F();break;case "inline":b('<div class="fancybox-inline-tmp" />').hide().insertBefore(b(a)).bind("fancybox-cleanup",function(){b(this).replaceWith(i.children())}).bind("fancybox-cancel",function(){b(this).replaceWith(m.children())});b(a).appendTo(m);F();break;case "image":h=false;b.fancybox.showActivity();
s=new Image;s.onerror=function(){P()};s.onload=function(){s.onerror=null;s.onload=null;Z()};s.src=d;break;case "swf":t='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+e.width+'" height="'+e.height+'"><param name="movie" value="'+d+'"></param>';w="";b.each(e.swf,function(r,R){t+='<param name="'+r+'" value="'+R+'"></param>';w+=" "+r+'="'+R+'"'});t+='<embed src="'+d+'" type="application/x-shockwave-flash" width="'+e.width+'" height="'+e.height+'"'+w+"></embed></object>";m.html(t);
F();break;case "ajax":a=d.split("#",2);f=e.ajax.data||{};if(a.length>1){d=a[0];if(typeof f=="string")f+="&selector="+a[1];else f.selector=a[1]}h=false;b.fancybox.showActivity();E=b.ajax(b.extend(e.ajax,{url:d,data:f,error:P,success:function(r){if(E.status==200){m.html(r);F()}}}));break;case "iframe":b('<iframe id="fancybox-frame" name="fancybox-frame'+(new Date).getTime()+'" frameborder="0" hspace="0" scrolling="'+e.scrolling+'" src="'+e.href+'"></iframe>').appendTo(m);N();break}},$=function(){if(u.is(":visible")){b("div",
u).css("top",I*-40+"px");I=(I+1)%12}else clearInterval(H)},aa=function(){if(!b("#fancybox-wrap").length){b("body").append(m=b('<div id="fancybox-tmp"></div>'),u=b('<div id="fancybox-loading"><div></div></div>'),x=b('<div id="fancybox-overlay"></div>'),g=b('<div id="fancybox-wrap"></div>'));if(!b.support.opacity){g.addClass("fancybox-ie");u.addClass("fancybox-ie")}D=b('<div id="fancybox-outer"></div>').append('<div class="fancy-bg" id="fancy-bg-n"></div><div class="fancy-bg" id="fancy-bg-ne"></div><div class="fancy-bg" id="fancy-bg-e"></div><div class="fancy-bg" id="fancy-bg-se"></div><div class="fancy-bg" id="fancy-bg-s"></div><div class="fancy-bg" id="fancy-bg-sw"></div><div class="fancy-bg" id="fancy-bg-w"></div><div class="fancy-bg" id="fancy-bg-nw"></div>').appendTo(g);
D.append(i=b('<div id="fancybox-inner"></div>'),z=b('<a id="fancybox-close"></a>'),A=b('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),B=b('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>'));z.click(b.fancybox.close);u.click(b.fancybox.cancel);A.click(function(a){a.preventDefault();b.fancybox.prev()});B.click(function(a){a.preventDefault();b.fancybox.next()});if(O){x.get(0).style.setExpression("height",
"document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'");u.get(0).style.setExpression("top","(-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px'");D.prepend('<iframe id="fancybox-hide-sel-frame" src="javascript:\'\';" scrolling="no" frameborder="0" ></iframe>')}}};
b.fn.fancybox=function(a){b(this).data("fancybox",b.extend({},a,b.metadata?b(this).metadata():{})).unbind("click.fb").bind("click.fb",function(d){d.preventDefault();if(!h){h=true;b(this).blur();q=[];p=0;d=b(this).attr("rel")||"";if(!d||d==""||d==="nofollow")q.push(this);else{q=b("a[rel="+d+"], area[rel="+d+"]");p=q.index(this)}C();return false}});return this};b.fancybox=function(a,d){if(!h){h=true;d=typeof d!=="undefined"?d:{};q=[];p=d.index||0;if(b.isArray(a)){for(var f=0,o=a.length;f<o;f++)if(typeof a[f]==
"object")b(a[f]).data("fancybox",b.extend({},d,a[f]));else a[f]=b({}).data("fancybox",b.extend({content:a[f]},d));q=jQuery.merge(q,a)}else{if(typeof a=="object")b(a).data("fancybox",b.extend({},d,a));else a=b({}).data("fancybox",b.extend({content:a},d));q.push(a)}if(p>q.length||p<0)p=0;C()}};b.fancybox.showActivity=function(){clearInterval(H);u.show();H=setInterval($,66)};b.fancybox.hideActivity=function(){u.hide()};b.fancybox.next=function(){return b.fancybox.pos(n+1)};b.fancybox.prev=function(){return b.fancybox.pos(n-
1)};b.fancybox.pos=function(a){if(!h){a=parseInt(a,10);if(a>-1&&j.length>a){p=a;C()}if(c.cyclic&&j.length>1&&a<0){p=j.length-1;C()}if(c.cyclic&&j.length>1&&a>=j.length){p=0;C()}}};b.fancybox.cancel=function(){if(!h){h=true;b.event.trigger("fancybox-cancel");J();e&&b.isFunction(e.onCancel)&&e.onCancel(q,p,e);h=false}};b.fancybox.close=function(){function a(){x.fadeOut("fast");g.hide();b.event.trigger("fancybox-cleanup");i.empty();b.isFunction(c.onClosed)&&c.onClosed(j,n,c);j=e=[];n=p=0;c=e={};h=false}
if(!(h||g.is(":hidden"))){h=true;if(c&&b.isFunction(c.onCleanup))if(c.onCleanup(j,n,c)===false){h=false;return}J();b(z.add(A).add(B)).hide();b("#fancybox-title").remove();g.add(i).add(x).unbind();b(window).unbind("resize.fb scroll.fb");b(document).unbind("keydown.fb");i.css("overflow","hidden");if(c.transitionOut=="elastic"){k=Q();var d=g.position();l={top:d.top,left:d.left,width:g.width(),height:g.height()};if(c.opacity)l.opacity=1;y.prop=1;b(y).animate({prop:0},{duration:c.speedOut,easing:c.easingOut,
step:M,complete:a})}else g.fadeOut(c.transitionOut=="none"?0:c.speedOut,a)}};b.fancybox.resize=function(){var a,d;if(!(h||g.is(":hidden"))){h=true;a=i.wrapInner("<div style='overflow:auto'></div>").children();d=a.height();g.css({height:d+c.padding*2+v});i.css({height:d});a.replaceWith(a.children());b.fancybox.center()}};b.fancybox.center=function(){h=true;var a=K(),d=c.margin,f={};f.top=a[3]+(a[1]-(g.height()-v+40))*0.5;f.left=a[2]+(a[0]-(g.width()+40))*0.5;f.top=Math.max(a[3]+d,f.top);f.left=Math.max(a[2]+
d,f.left);g.css(f);h=false};b.fn.fancybox.defaults={padding:10,margin:20,opacity:false,modal:false,cyclic:false,scrolling:"auto",width:560,height:340,autoScale:true,autoDimensions:true,centerOnScroll:false,ajax:{},swf:{wmode:"transparent"},hideOnOverlayClick:true,hideOnContentClick:false,overlayShow:true,overlayOpacity:0.3,overlayColor:"#666",titleShow:true,titlePosition:"outside",titleFormat:null,transitionIn:"fade",transitionOut:"fade",speedIn:300,speedOut:300,changeSpeed:300,changeFade:"fast",
easingIn:"swing",easingOut:"swing",showCloseButton:true,showNavArrows:true,enableEscapeButton:true,onStart:null,onCancel:null,onComplete:null,onCleanup:null,onClosed:null};b(document).ready(function(){aa()})})(jQuery);

// ----------------- Search page ------------------- //
$(document).ready(function(){
	
	
	//1. GENERAL 
	
	//1.1. Zebra tables
	  $("#content tr:even").css("background-color", "#eedece");
	  $("#content tr:odd").css("background-color", "#fdf0e3");
 
	//2. GENPLAN
	
	//2.1. Zoom in map
	$('#sm_genplan').click(function(){
		$('#sm_genplan').animate({ 
			opacity: 'hide' }, "slow");
		$('#map_img').focus();
	}
	);
	
	 // Load xml 
	
	
	//2.2. Make regions map clickable:
	$('area').hover(function(e){
		var $n = $(this).attr('alt'); 
		$.get('http://afonino.com/wp-content/themes/afonino/js/price.xml', function(d){ 
			$(d).find('property').filter(function(){
					return $(this).find("number").text() === $n;
				}).each(function(){    
					var $property = $(this);  
					var $number = $property.find('number').text();
					var $square = $property.find('square').text();
					var $price_ar = $property.find('price_ar').text();
					var $price_general = $property.find('price_general').text();
					var $house = $property.find('house').text();
					var $w_house = $property.find('w_house').text();
					var $status = $property.find('status').text();	
					$("body").append("<div id='imagetip'><strong>Участок №"+ $n + "</strong><br />Площадь: <strong>" + $square + "</strong> соток<br />Стоимость 1 сотки: <strong>"+ $price_ar +"</strong> тыс.руб.<br />Стоимость участка: <strong>"+ $price_general+"</strong> тыс.руб.<br />Дом, проект, размер: <strong>"+$house+"</strong> <br />Цена с домом: <strong>"+$w_house+"</strong> тыс.руб.<br />Статус: <strong>"+$status+"</strong></div>");
					
					$("#imagetip")
					.css("top",(e.pageY - 30) + "px")
					.css("left",(e.pageX + 30) + "px")
					.fadeIn("fast");		
			});  
		}); 
									 
		 
	},
		function(){	
			$("#imagetip").remove();
		});							
	//2.3. Make regions map fluffy:
	$('#map_img[usemap]').maphilight({
		fade: true,
		// some other hilight options can be here...
		fill: true
	});
	
	//2.4. Zoom out map
	$('#zoom_out').click(function(){
		$('#sm_genplan').animate({ 
			opacity: 'show' }, "slow");
		$('#sm_genplan').focus();
	}
	);
}); 
// 3.GALLERY
	//3.1. Highlight images
	$('#gallery_map[usemap]').maphilight({
		fade: true,
		// some other hilight options can be here...
		fill: true
	});
	// 3.2. Make pics appear
	$('area.fb_fire').fancybox();
	$('a.fb_fire').fancybox();
// 4. Houses
	//4.1. 6x8 behaviour
	//Views
	$('#x68_color_picker2').hide();
	$('#x68_back').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x8n/back_white.jpg');
		$('#x68_color_picker1').show();
		$('#x68_color_picker2').hide();
	});
	$('#x68_terrace').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x8n/terrace_front_white.jpg');
		$('#x68_color_picker2').show();
		$('#x68_color_picker1').hide();
	});
	$('#x68_w_01').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x8n/white_only_1.jpg');
		$('#x68_color_picker1, #x68_color_picker2').hide();
	});
	$('#x68_w_02').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x8n/white_only_2.jpg');
		$('#x68_color_picker1, #x68_color_picker2').hide();
	});
	$('#x68_w_03').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x8n/white_only_3.jpg');
		$('#x68_color_picker1, #x68_color_picker2').hide();
	});
	$('#x68_w_04').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x8n/white_only_4.jpg');
		$('#x68_color_picker1, #x68_color_picker2').hide();
	});
	//Colors
	// IMG 1
	$('#x68_yellow1').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x8n/back_yellow.jpg');
	});
	$('#x68_dark1').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x8n/back_dark.jpg');
	});
	$('#x68_white1').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x8n/back_white.jpg');
	});
	
	// IMG 2
	$('#x68_yellow2').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x8n/terrace_front_yellow.jpg');
	});
	$('#x68_dark2').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x8n/terrace_front_dark.jpg');
	});
	$('#x68_white2').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x8n/terrace_front_white.jpg');
	});
		
						 
	//Plans
	$('#x68_plan_1').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x8/plan_first.jpg');
		$('#x68_color_picker1, #x68_color_picker2').hide();
	});
	$('#x68_plan_2').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x8/plan_second.jpg');
		$('#x68_color_picker1, #x68_color_picker2').hide();
	});
	
	//4.2. 6x12 behaviour
	//Views
	$('#x612_color_picker2').hide();
	$('#x612_back').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x12/back_yellow.jpg');
		$('#x612_color_picker1').show();
		$('#x612_color_picker2').hide();
	});
	$('#x612_terrace').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x12/terrace_front_yellow.jpg');
		$('#x612_color_picker2').show();
		$('#x612_color_picker1').hide();
	});
	$('#x612_w_01').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x12/white_only_1.jpg');
		$('#x612_color_picker1, #x612_color_picker2').hide();
	});
	$('#x612_w_02').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x12/white_only_2.jpg');
		$('#x612_color_picker1, #x612_color_picker2').hide();
	});
	$('#x612_w_03').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x12/white_only_3.jpg');
		$('#x612_color_picker1, #x612_color_picker2').hide();
	});
	$('#x612_w_04').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x12/white_only_4.jpg');
		$('#x612_color_picker1, #x612_color_picker2').hide();
	});
	$('#x612_w_05').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x12/white_only_5.jpg');
		$('#x612_color_picker1, #x612_color_picker2').hide();
	});
	$('#x612_w_06').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x12/white_only_6.jpg');
		$('#x612_color_picker1, #x612_color_picker2').hide();
	});
	
	//Colors
	// IMG 1
	$('#x612_yellow1').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x12/back_yellow.jpg');
	});
	$('#x612_dark1').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x12/back_dark.jpg');
	});
	$('#x612_white1').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x12/back_white.jpg');
	});
	
	// IMG 2
	$('#x612_yellow2').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x12/terrace_front_yellow.jpg');
	});
	$('#x612_dark2').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x12/terrace_front_dark.jpg');
	});
	$('#x612_white2').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x12/terrace_front_white.jpg');
	});
		
						 
	//Plans
	$('#x612_plan_1').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x12/plan_first.jpg');
		$('#x612_color_picker1, #x612_color_picker2').hide();
	});
	$('#x612_plan_2').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x12/plan_second.jpg');
		$('#x612_color_picker1, #x612_color_picker2').hide();
	});
	//4.3. 6x1215 behaviour
	//Views
	$('#x61215_color_picker2').hide();
	$('#x61215_back').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x1215/back_dark.jpg');
		$('#x61215_color_picker1').show();
		$('#x61215_color_picker2').hide();
	});
	$('#x61215_terrace').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x1215/terrace_front_dark.jpg');
		$('#x61215_color_picker2').show();
		$('#x61215_color_picker1').hide();
	});
	$('#x61215_w_01').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x1215/white_only_1.jpg');
		$('#x61215_color_picker1, #x61215_color_picker2').hide();
	});
	$('#x61215_w_02').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x1215/white_only_2.jpg');
		$('#x61215_color_picker1, #x61215_color_picker2').hide();
	});
	$('#x61215_w_03').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x1215/white_only_3.jpg');
		$('#x61215_color_picker1, #x61215_color_picker2').hide();
	});
	$('#x61215_w_04').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x1215/white_only_4.jpg');
		$('#x61215_color_picker1, #x61215_color_picker2').hide();
	});
	$('#x61215_w_05').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x1215/white_only_5.jpg');
		$('#x61215_color_picker1, #x61215_color_picker2').hide();
	});
	$('#x61215_w_06').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x1215/white_only_6.jpg');
		$('#x61215_color_picker1, #x61215_color_picker2').hide();
	});
	
	//Colors
	// IMG 1
	$('#x61215_yellow1').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x1215/back_yellow.jpg');
	});
	$('#x61215_dark1').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x1215/back_dark.jpg');
	});
	$('#x61215_white1').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x1215/back_white.jpg');
	});
	
	// IMG 2
	$('#x61215_yellow2').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x1215/terrace_front_yellow.jpg');
	});
	$('#x61215_dark2').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x1215/terrace_front_dark.jpg');
	});
	$('#x61215_white2').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x1215/terrace_front_white.jpg');
	});
		
						 
	//Plans
	$('#x61215_plan_1').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x1215/plan_first.jpg');
		$('#x61215_color_picker1, #x61215_color_picker2').hide();
	});
	$('#x61215_plan_2').click(function(){
		$('#big_pic').attr('src', 'http://afonino.com/i/houses/6x1215/plan_second.jpg');
		$('#x61215_color_picker1, #x61215_color_picker2').hide();
	});
$(document).ready(function()  
      {  
        $.get('http://afonino.com/wp-content/themes/afonino/js/price.xml', function(d){  
        $(d).find('property').each(function(){  
  
            var $property = $(this);  
            var number = $property.find('number').text();
			var square = $property.find('square').text();
			var price_ar = $property.find('price_ar').text();
			var price_general = $property.find('price_general').text();
			var house = $property.find('house').text();
			var w_house = $property.find('w_house').text();
			var status = $property.find('status').text();
  
            
        });  
    });  
});  
