$(document).ready(function() {
	
	$("#mainNav li").hover(
		function() {
			$(this).children('.dropdown').css({'display':'block'})
			$(this).children('.topnav').addClass("hover")
		},
		function() {
			$(this).children('.dropdown').css({'display':'none'})
			$(this).children('.topnav').removeClass("hover")
		}
	);
	
	$(".mainContent div.overview").hover(
		function() {
			$(this).children('a').css({'background-position':'bottom'})
		},
		function() {
			$(this).children('a').css({'background-position':'top'})
	});
	
	$( "#radio" ).buttonset();

	
});
