jQuery(function (){
	
	// Get the background image information.
	/*jQuery.ajax({
		type: "POST",
		url: "ajaxHBChange.php",
		data: "loadImages=1&lan="+lanCode,
		success: function(msg){
			//alert(msg);
			count = parseInt(msg);
		}
	});*/
	
	// link click.
	jQuery("#theme").click(function (){
		count++;
		position = (count%totalCont == 0) ? totalCont : count;	
		// Get the background image information.
		jQuery.ajax({
			type: "POST",
			url: "ajaxHBChange.php",
			data: "loadImages=2&position="+position+"&page="+isHome+"&lan="+lanCode,
			success: function(msg){
				/*alert(msg);*/
				imageSrc = msg;
				jQuery("body").attr('style', 'background-image: url('+imageSrc+')');
			}
		});
		
		// Set the background image information.
		jQuery.ajax({
			type: "POST",
			url: "ajaxHBChange.php",
			data: "setImages=1&lan="+lanCode,
			success: function(msg){
				//alert(msg);
				jQuery("#theme").find("b").text(msg);
			}
		});
		
		return false;
	});
});
