/*
***********************************************************

Name:			main.js
Title:			Main JS file

Author: 		Vahe Hovhannisyan (www.vaheweb.info)
Created: 		26.05.2007
Last modified: 	26.05.2007

***********************************************************
*/

/*
** Root Path
*/
var ROOT_PATH = 'http://'+location.host+'/sirumem/www/';

// Start
function start()
{
	
	if (($('country')) && ($('country').getValue() != 'strana'))
	{
		
		var country = $('country').getValue()
		
		if (!$('cityDiv'))
	    {
	    	cityDiv = new Element('div').setProperty('id', 'cityDiv');
	    	cityDiv.injectAfter('country');
	    }
	    
	    new Ajax(ROOT_PATH+'cities.php?country='+country, {
			method: "get",
			update: $("cityDiv")
		}).request();
	}
	
	$('country').onchange = function(event)
	{
		
	    var country = $('country').getValue()
	    
	    if (!$('cityDiv'))
	    {
	    	cityDiv = new Element('div').setProperty('id', 'cityDiv');
	    	cityDiv.injectAfter('country');
	    }
	    
	    new Ajax(ROOT_PATH+'cities.php?country='+country, {
			method: "get",
			update: $("cityDiv")
		}).request();
	    
	};
	
}

window.addEvent('domready', start);