var Banner = {

		swapImage : function (){
			
			banners = $("#banner-image>div");
			
			banners.each(function(){
				
				attribute = $(this).css('display');
				
				if (attribute == 'block') {
					$(this).css('display', 'none');
				}
				else if(attribute == 'none') {
					$(this).css('display', 'block');
				}
			});			
		}
};
