
<?xml version="1.0"?>
 
<rss version="2.0" >
  <channel>
    <title>Ipad Wallpaper, the first source wallpapers iPad 2: Update : Also compatible HP Tablet Touchpad and Touchpad Go - Free wallpapers</title>
    <link>http://hd.ipad-wallpapers.fr</link>
    <description>Ipad Wallpaper, the first source wallpapers iPad 2: Update : Also compatible HP Tablet Touchpad and Touchpad Go - Free wallpapers</description>
    <language>en-us</language>
    <pubDate>Mon, 16 Jul 2012 08:26:44 CEST</pubDate>
    <lastBuildDate>Mon, 16 Jul 2012 08:26:44 CEST</lastBuildDate>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <generator>Ipad Wallpaper, the first source wallpapers iPad 2: Update : Also compatible HP Tablet Touchpad and Touchpad Go Rss Generator</generator>
    
    <ttl>5</ttl>
    
    <item>
	<title>No wallpapers found</title>
</item>
    
   </channel>
</rss>                      <script type="text/javascript">
$(document).ready(function(){
	$("#notifier").hide(); //On page load, hide the translation loader
	var Language = ''; // Set the Language variable from PHP
	
	$(".translate").click(function(){ // When something with the class of 'translate' is clicked trigger this function
		$("#notifier").slideDown(200); // Slide the notifer doing, so people know its working
		var Language = $(this).attr("id"); // Set the Language variable to the value of the clicked items ID
		$.ajax({ // Initialise Ajax call
			url:'ajax.php?status=updateLanguage', // Set the Ajax URL
			data:'language='+Language, // Send it the correct data
			type:'GET', // Set the data transfer type
			success:function(data){ // If successful..
				$("body").translate('en', data); // Translate the page from English to whatever langauge the Ajax page sent back
				$("#notifier").slideUp(600); // Slide the notifier back up
			}
		})
	});
	
	$("body").translate('en', Language); // Translate the page
	
});
</script>