/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */



jQuery(document).ready(function() {

	  jQuery("#select_player").selectbox();

		jQuery(".playerAvatar > a").tooltip({
			showURL: false,
			top: 20,
			left: -40
 
	 });
    jQuery(".playerAvatar > a > .avatar").fadeTo("fast", 0.6);
    jQuery(".playerAvatar > a > .avatar").hover(function(){
        jQuery(this).fadeTo("fast", 1.0); // This sets the opacity to 100% on hover
    },function(){
        jQuery(this).fadeTo("fast", 0.6); // This sets the opacity back to 60% on mouseout
    });


 


});

function OnSubmitForm() {
   	var url = jQuery("#select_player_input").attr('url');
		if(url == undefined)
			return false;
		else
		{
		 document.player_select.action = url;
			return true;
		}
}
