// JavaScript Document
$(document).ready(function(){
	
	
	$('#nav_continent li').hover(
		function () {
			//show its submenu
			$('ul', this).slideDown(100);
 
		}, 
		function () {
			//hide its submenu
			$('ul', this).slideUp(100);			
		}
	); 
	
	$('.selectCountry').live('click',function(){
		var continent, country;
		continent 	= $(this).attr('continent');
		country 	= $(this).attr('country');
		$.ajax({
		   type: "GET",
		   url: '/optitravel/online/www/layout06/ajaxCalls.php?opt=cat&continent='+continent+'&country='+country,
		   success: function(data){
			 $('#continents').html(data);
		   }
		 });

	});
	
	$('.selectCat').live('click', function(){
		var continent, country, cat, subcat;
		continent 	= $(this).attr('continent');
		country 	= $(this).attr('country');
		cat 		= $(this).attr('cat');
		subcat 		= $(this).attr('subcat');
		window.location('/optitravel/online/www/layout06/reserves/pkt/pkt0.php?country='+country+'&cat='+cat+'&subcat='+subcat+'&continent='+continent);
	})
	
	$('.resetMain').live('click', function(){
		window.location.reload();
	})
});

function loadMain()
{
	$.ajax({
	   type: "GET",
	   url: '/optitravel/online/www/layout06/ajaxCalls.php?opt=main',
	   success: function(data){
		 $('#continents').html(data);
	   }
	 });
}

