// JavaScript Document
	
	//banner thingy
	$(document).ready(function() {
		$('#slider')
		.cycle({
			fx: 'fade', 
			speed: 600, 
			timeout: 5000, 
			pause: 1,
			sync: 0,
			pager: '#nav',
			slideExpr: 'img'
		});
	});
	
	//poll thingy
	$(document).ready(function(){    
		$('#submitPoll').click(function () {
			$('#fadePanel').fadeIn('slow').delay(1200).fadeOut('slow');			
		});      
	});	
	
	//slideout thingy	
	$(document).ready(function(){    	
		$("#flagDIV").hover(function() {
			 $("#slideout1").animate({left:"0px"}, "fast");
		}, function() {
			 $("#slideout1").animate({left:"-123px"}, "fast");
		});					
	});	
