// Logo heandler
$(document).ready(function() {
	$("#logoImg").hover(	
	  function () {	  
		$(this).attr('src',baseUrl+'images/systemLogoImg.jpg');
	  },
	  function () {
		$(this).attr('src',baseUrl+'images/systemLogoImg_over.jpg');
	  }
	);
	$("#systemLogo").hover(	
	  function () {	 
		$(this).attr('src',baseUrl+'admin/images/systemLogoImg-hover.jpg');
	  },
	  function () {
		$(this).attr('src',baseUrl+'admin/images/systemLogoImg.jpg');
	  }
	);
});

function checkAll(obj,flag){
	$('[name=delete_image]').each(
		function(){			
			$(this).attr('checked','checked');
			//alert($(this).attr('checked'));
		}
	);
	$('span [class=checkbox]').each(
		function(){			
			//$(this).css('background-position','0pt -50px');
		}
	);
}


