$.jQTouch({
	icon: 'img/thuvi-icon.png',
	statusBar: 'black-translucent',
	preloadImages: [
		'themes/jqt/img/chevron_white.png',
		'themes/jqt/img/bg_row_select.gif',
		'themes/jqt/img/back_button_clicked.png',
		'themes/jqt/img/button_clicked.png'
		],
});
	
$(document).ready(function(e){
	
	$('#tamil-new').bind('pageAnimationEnd', function(e, info) {
		if (!$(this).data('loaded')) {
			$(this).find('ul').empty().append($('<li>Loading</li>'));
			$(this).find('ul').load('ajaxIPhone.php?language=tamil&type=new');
			$(this).parent().data('loaded', true);
		}
	});
	
	$('#tamil-random').bind('pageAnimationEnd', function(e, info) {
		if (!$(this).data('loaded')) {
			$(this).find('ul').empty().append($('<li>Loading</li>'));
			$(this).find('ul').load('ajaxIPhone.php?language=tamil&type=random');
			$(this).parent().data('loaded', true);
		}
	});
	
	$('#tamil-list').bind('pageAnimationEnd', function(e, info) {
		if (!$(this).data('loaded')) {
			$(this).find('ul').empty().append($('<li>Loading</li>'));
			$(this).find('ul').load('ajaxIPhone.php?language=tamil&type=list');
			$(this).parent().data('loaded', true);
		}
	});
	
	$('#hindi-new').bind('pageAnimationEnd', function(e, info) {
		if (!$(this).data('loaded')) {
			$(this).find('ul').empty().append($('<li>Loading</li>'));
			$(this).find('ul').load('ajaxIPhone.php?language=hindi&type=new');
			$(this).parent().data('loaded', true);
		}
	});

	$('#hindi-random').bind('pageAnimationEnd', function(e, info) {
		if (!$(this).data('loaded')) {
			$(this).find('ul').empty().append($('<li>Loading</li>'));
			$(this).find('ul').load('ajaxIPhone.php?language=hindi&type=random');
			$(this).parent().data('loaded', true);
		}
	});

	$('#hindi-list').bind('pageAnimationEnd', function(e, info) {
		if (!$(this).data('loaded')) {
			$(this).find('ul').empty().append($('<li>Loading</li>'));
			$(this).find('ul').load('ajaxIPhone.php?language=hindi&type=list');
			$(this).parent().data('loaded', true);
		}
	});
	
	$('#telugu-new').bind('pageAnimationEnd', function(e, info) {
		if (!$(this).data('loaded')) {
			$(this).find('ul').empty().append($('<li>Loading</li>'));
			$(this).find('ul').load('ajaxIPhone.php?language=telugu&type=new');
			$(this).parent().data('loaded', true);
		}
	});

	$('#telugu-random').bind('pageAnimationEnd', function(e, info) {
		if (!$(this).data('loaded')) {
			$(this).find('ul').empty().append($('<li>Loading</li>'));
			$(this).find('ul').load('ajaxIPhone.php?language=telugu&type=random');
			$(this).parent().data('loaded', true);
		}
	});

	$('#telugu-list').bind('pageAnimationEnd', function(e, info) {
		if (!$(this).data('loaded')) {
			$(this).find('ul').empty().append($('<li>Loading</li>'));
			$(this).find('ul').load('ajaxIPhone.php?language=telugu&type=list');
			$(this).parent().data('loaded', true);
		}
	});
});
