var curvyCornersVerbose = true;

$(function(){
	$.superbox();
});


$(document).ready(function(){
var newsoption1 = {
firstname: "mynews",
secondname: "showhere",
thirdname:"news_display",
fourthname:"news_button",
playingtitle:"Now Playing:",
nexttitle:"Next News:",
prevtitle:"Prev News:",
newsspeed:'8000',
effectis:'1',
mouseover:true,
newscountname:"test",
disablenewscount:false
}
$.init_news(newsoption1);
});

	$(function() {
		// set opacity to nill on page load
		$("ul#menu-eng span").css("opacity","0");
		// on mouse over
		$("ul#menu-eng span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, "slow");
		});
	});
		$(function() {
		// set opacity to nill on page load
		$("ul#learn-more span").css("opacity","0");
		// on mouse over
		$("ul#learn-more span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, "slow");
		});
	});
		
