/*$(document).ready(function() {
	$(".bgbanner DIV A B").css({"color":"#555"});
	$(".bgbanner DIV A").css({"color":"#555"}).hover(function(){$(this).css("text-decoration","underline")},function(){$(this).css("text-decoration","none")});
	
	var i = 0;
	$(".bgbanner DIV").each(function(){
		i++;
		if(i==1){
				$(this).css({"margin-bottom":"10px"});
				$(this).children("A").addClass("extra_begun");
				$(this).children("A").hover(
					function(){
						$(this).css("text-decoration","none")
					},
					function(){
						$(this).css("text-decoration","underline");
					});
			}
		else
			if(i==3)
				i=0;
	});
});*/