// dom ready starts
$(document).ready(function(){


	$('#ajaxloading').hide();
	$('.buttons, a').click(function (){
	$('#ajaxloading').show();
	});
	
	// ajax progress bar
	$("#ajaxloading").bind("ajaxSend", function(){
 $(this).show();
 }).bind("ajaxComplete", function(){
 $(this).hide();
 });
	
	if ((screen.width>1024))
				{
 				//alert(screen.width);
					$('body').css("background-image","url(images/bg_clouds_resbig.jpg)");
				}
				else
				{
  			$('body').css("backgroundimage","url(images/bg_clouds_1024.jpg)");
				}

				
});  // // dom ready ends
