// JavaScript Document
var SITEURL="http://www.hiking-bulgaria.com/";


function sendRequest() 

{	
	
	
	var name = $('#name').val();
	var email = $('#mail').val();
	var country = $('#country').val();
	var company = $('#company').val();
	var position = $('#position').val();
	var message = $('#message').val();
	var title = $('#title').val();
	var link = $('#link').val();
	var code = $('#code').val();
	
	
	
		$.post(SITEURL+"server/send_request.php", 
		{ 
			
			
			
			name: name,
			country: country,
			company: company,
			position: position,
			message: message,
			title: title,
			link: link,
			email: email,
			code: code,
			
			
		}, 
		function (result) 
		{  
			$("#enquire_form_div").html(result);
			
		}
	);	
}



function LoadGall (){

    $(".myClass").jCarouselLite({
	
	
		visible: 2,
		speed: 400,
        btnNext: ".next",
        btnPrev: ".prev",
		 circular: false
		
    });
	
	$('#gallery a').lightBox({fixedNavigation:false});

}



