$(document).ready(function () {
	//$('#myselectbox1').selectbox();
	//$('#myselectbox1').children().click( function() { alert( 123 ); } );
	//console.log($('#myselectbox1 option:selected').val());
	//console.log($('#myselectbox1').children());
	$('#slider').cycle({ 
		fx: 'fade', 
		slideExpr: 'img',
		speed: 2000,
		timeout: 4000	
	});
	$('#tnav a').click(function() {
		if (!$(this).parent().hasClass('active')) {
			$('div.tab').removeClass('show');
			$('#' + $(this).attr('rel')).addClass('show');
			$('#tnav li').removeClass('active');
			$(this).parent().addClass('active');
		}
	});
	jQuery('#thumbs').jcarousel({
		scroll: 1,
		animation: 'normal'
	});
	$('#hslider').cycle({ 
		fx:     'scrollHorz', 
		slideExpr: 'div.slide',
		speed:  500, 
		timeout: 4000, 
		next:   '#tnext', 
		prev:   '#tprev' 
	});
	$("a[rel^='prettyPhoto']").prettyPhoto();
	
});
	function change_lang(){
		var objSel = document.getElementById("myselectbox");
		MyVal2=(objSel.options[objSel.selectedIndex].value);
		document.location.href = MyVal2;
		//alert(123);
	}
	function SendForm() {
			$.ajax({
				type: "POST",
				url: "/ajax.php",
				data: "action=send_message&"+$('#send_form').serialize(),
				success: function(data){
					alert('Your message has been sent');
				}	
			});	
			return false;
		};
