// JavaScript Document
$(document).ready(function(){

	$("#menu ul li").hover(function(){
		$(this).children("ul").show();
		$(this).children("a:first").addClass("hover");
	}, function(){
		$(this).children("ul").hide();
		$(this).children("a:first").removeClass("hover");
	});


	$(".clearReturn").focus(function() {
	if( this.value == this.defaultValue ) {
		this.value = "";
	}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
	}});
   
   
	$("#vote_button").click(function(){
		var val = $(".pollItems:checked").val();
		if(val)
			$.get("includes/ajax.php", {action:'vote', id:val}, function(data){
				$("#poll").html(data);															 
			});
	
	});


});
