$(document).ready(function() {
	
	$(".signin").click(function(){
		if ($(".signin-form").css('display') == 'none')
		{
			$(this).css('color', '#ffffff');
			$(this).css('background-color', '#054e77');
			$(this).css('-moz-border-radius-bottomleft', '0px');
			$(this).css('-moz-border-radius-bottomright', '0px');
			$(this).css('-webkit-border-bottom-left-radius', '0px');
			$(this).css('-webkit-border-bottom-right-radius', '0px');
			$(".signin-form").show();
			 $('#login').focus();
		}
		else
		{
			$(this).css('color', '#246598');
			$(this).css('background-color', '#eeeeee');
			$(this).css('-moz-border-radius-bottomleft', '3px');
			$(this).css('-moz-border-radius-bottomright', '3px');
			$(this).css('-webkit-border-bottom-left-radius', '3px');
			$(this).css('-webkit-border-bottom-right-radius', '3px');
			$(".signin-form").hide();
		}
	});
	
	$(function() {
		$("a", ".module-container .button, .main-splash-text .button").button();
		$("input:submit", ".signin-form").button();
	});
	
	$(function() {
		$("#rotate").scrollable({circular: true,speed: 1200}).navigator().autoscroll({interval: 12000,autopause: true});
	});
	
	$("a", "#pop-courses").button();
	
});
