var myDomain='http://'+document.domain + '/GBS/';
$(document).ready(function() {
		$('ul#slideBanner').innerfade({
						animationtype:'fade' ,
						speed: 3000,
						timeout: 6000,
						type: 'sequence',
						containerheight: '380px'
					});
}); //n doc
function hideObj(){
	$('embed, object, select').css({ 'visibility' : 'hidden' });
} //

function showObj(){
	$('embed, object, select').css({ 'visibility' : 'visible' });
} //

// plugin Scrolling page
jQuery.fn.extend({
	  scrollTo : function(speed, easing) {
	    return this.each(function() {
	      var targetOffset = $(this).offset().top;
	      $('html,body').animate({scrollTop: targetOffset}, speed, easing);
	    });
	  }
	}); // n plugin