var divArray = new Array();

jQuery(document).ready(function(){ 
	//jQuery('.container').equalHeights();
	jQuery('.columns').equalHeights();
});

function sendResultsForm(val, hiddenId, formId, pid)
{
	if(hiddenId != '' && val != '')
	{
		setFirstEntryValue(val, hiddenId);
	}
	var frm = document.getElementById(formId);
	
	frm.submit();
}

function sendAreas(page, count)
{
	var link = page+"/search-result/binArea-";
	for(var i = 0; i<count; i++)
		{
		if(document.areaSel.area[i].checked==true)
			{
			link += "1";
			}
		else
			{
			link += "0";
			}
		}
	link += ".html";
	location.href=link;
}

function sendOrder()
{
	var frm = document.getElementById('orderForm');
	frm.submit();
}

function sendCurrency()
{
	var frm = document.getElementById('currencyForm');
	frm.submit();
}

function sendResultsFormToForm(formId, pid, nextForm, send)
{
	var frm = document.getElementById(formId);
	var a = frm.action;
	if(send!="")
	{
			var a = frm.action;
			frm.action = a+"send-1.html";
	}
	sendResultsForm('','',formId,pid);
}

function changeBgButton(divId, picUrl)
{
	var divBu = document.getElementById(divId);
	divBu.style.backgroundImage = "url("+picUrl+")";
}

function sendMailFormViewing(formId, pid, nextForm, send)
{
	if( document.forms['viewing'].surname.value == '' ||
		document.forms['viewing'].prename.value == '' ||
		document.forms['viewing'].address.value == '' ||
		document.forms['viewing'].country.value == '' ||
		document.forms['viewing'].email.value == '')
		{
		alert('Please fill in all fields');
		}
	else
		{
		sendResultsFormToForm(formId, pid, nextForm, send);
		}
}

function sendMailFormInfo(formId, pid, nextForm, send)
{
	if( document.forms['info'].surname.value == '' ||
		document.forms['info'].prename.value == '' ||
		document.forms['info'].email.value == '')
		{
		alert('Please fill in all fields');
		}
	else
		{
		sendResultsFormToForm(formId, pid, nextForm, send);
		}
}

function setFirstEntryValue(val, hiddenId)
{
	var fhidden = document.getElementById(hiddenId);
	fhidden.value = val;
}

/*-------------------------------------------------------------------- 
 * jQuery Plugin: "EqualHeights"
 * by:	Scott Jehl, Todd Parker, Maggie Costello Wachs (http://www.filamentgroup.com)
 *
 * Copyright (c) 2008 Filament Group
 * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php)
 *
 * Description: Compares the heights or widths of the top-level children of a provided element 
 		and sets their min-height to the tallest height (or width to widest width). Sets in em units 
 		by default if pxToEm() method is available.
 * Dependencies: jQuery library, pxToEm method	(article: 
		http://www.filamentgroup.com/lab/retaining_scalable_interfaces_with_pixel_to_em_conversion/)							  
 * Usage Example: jQuery(element).equalHeights();
  		Optional: to set min-height in px, pass a true argument: jQuery(element).equalHeights(true);
 * Version: 2.0, 08.01.2008
--------------------------------------------------------------------*/

jQuery.fn.equalHeights = function(px) {
	jQuery(this).each(function(){
		var currentTallest = 0;
		jQuery(this).children().each(function(i){
			if (jQuery(this).height() > currentTallest) { currentTallest = jQuery(this).height(); }
		});
		px = true;
		if (!px || !Number.prototype.pxToEm) currentTallest = currentTallest.pxToEm(); //use ems unless px is specified
		// for ie6, set height since min-height isn't supported
		if (jQuery.browser.msie && jQuery.browser.version == 6.0) { jQuery(this).children().css({'height': currentTallest+'px'}); }
		jQuery(this).children().css({'min-height': currentTallest+'px'}); 
	});
	return this;
};

