///////// group for jQgetnfadeIt
function jQShowLoading() {
	jQuery('#loading').css({'visibility':'visible' , 'opacity':'1' });
}

function jQHiddenLoading() {
	jQuery('#loading').css({'visibility':'hidden' , 'opacity':'0' });
}


function jQgetnfadeIt(ele,url) {
	jQuery(document).ready(function(){
	jQShowLoading();
	jQuery('#'+ele).fadeOut(function(){jQuery(this).load(url, function() {jQHiddenLoading(); jQuery(this).fadeIn(400); } );});
	

});
}

function jQgetIt(ele,url) {
	jQuery(document).ready(function(){
	jQShowLoading();
	jQuery('#'+ele).load(url, function() {jQHiddenLoading(); jQuery(this).fadeIn(400); });
});
}
/////////

function jQRowAltnColors(id,selector,color01,color02) {
	jQuery(document).ready(function()
{
	jQuery(id + ' ' + selector+':even').css("background-color", color01);
	jQuery(id + ' ' + selector+':odd').css("background-color", color02);
});
}

