
function setLanguage(language){
	  $.ajax({
	  url: 'functionPHP.php?language='+language,
	  cache: false,success: function(data) {
		  window.location.reload();
		  //alert(language);
		  }});
	  }


$(function() {
		
		///////////// despre noi///////////////
		 $('#li-aboutus').click(function(){
										 $('#center-content').load('aboutus.php', function() {});
										 });
		//////////////////////////////////// Pachete///////////////
		 $('#li-packs').click(function(){
										 $('#center-content').load('packs.php', function() {});
										 });
		///////////// Parteneri///////////////
		 $('#li-partners').click(function(){
										 $('#center-content').load('partners.php', function() {});
										 });
		//////////////////////////////////// Servicii ///////////////
		if($('#li-contact')){
		$('#li-contact li').click(function(){
									   	 centerContentLoader();
										 getContent('#center-content','content/contact/'+this.id+'.php');
										 $('#li-contact li').removeClass();
										 $(this).addClass('active');
										 });
		  }
		   
		if($('#li-faq')){
		$('#li-faq li').click(function(){									     
									   	 centerContentLoader();
										 getContent('#center-content','content/faq/'+this.id+'.php');
										 $('#li-faq li').removeClass();
										 $(this).addClass('active');
										 });
		  }
		   
		/////////////////////////////////////// pina aici am adaugat//////
		
	});	


function getContent(where, src){
	  if($('.getFilm')) closeFilm();
	  if($('.getCanal')) closeCanal();
	 /* $.ajaxSetup({
        scriptCharset: "utf-8" ,
        dataType: "text/xml" ,
        contentType: "text/html; charset=utf-8"
      });*/
	  
	//$(where).ajax(src, function() {});
	
	$.ajax({
	  url: src,
	  cache: false,
	  success: function(data) {
		$(where).html(data);
	  }
	});
	}







function centerContentLoader(){	
	$('#centerContentLoader').html('<img src="images/ajax-loader.gif" style="margin-bottom:-12px;" />&nbsp;');
	}










