//######################################################################\\
//####		COPYRIGHT Simple Web-Solutions GmbH	2009				####\\		
//######################################################################\\

jQuery.noConflict();
jQuery(document).ready(function(){
	checkKeyvisuals();
});

function checkKeyvisuals() {
	var keyPic;
	jQuery("div.keyvisual").empty();
	var url = location.host;
	jQuery.get("http://"+url+"/fileadmin/templates/php/checkKeyvisuals.php", function(data){
		jQuery('content',data).each(function(i) {
			keyPic = jQuery(this).find("keyPic").text();
		});
		var keyPic_arr = keyPic.split(".jpg");		
		var pic = keyPic_arr[Math.round(Math.random() * (keyPic_arr.length-2))];
		jQuery("div.keyvisual").html('<img height="215" width="700" border="0" title="" alt="" src="fileadmin/user_upload/keyvisuals/'+pic+'.jpg"/>');
	});
	
	/*
	jQuery.ajax({
		type: "POST",
		url: "/fileadmin/templates/php/checkKeyvisuals.php?jsonp=?",
		dataType: "xml",
		jsonp:"jsonp",
		success: function(msg){
			jQuery('content',msg).each(function(i) {
				keyPic = jQuery(this).find("keyPic").text();
			});
			var keyPic_arr = keyPic.split(".jpg");		
			var pic = keyPic_arr[Math.round(Math.random() * (keyPic_arr.length-2))];
			jQuery("div.keyvisual").html('<img height="215" width="700" border="0" title="" alt="" src="fileadmin/user_upload/keyvisuals/startseite/'+pic+'.jpg"/>');
		}
	});*/
}
