﻿/*
FNDfilms.com jQuery source V1.0
written by Dave Kiss
http://www.davekiss.com

     _                                       _     ____                _       
  __| | ___   ___ _   _ _ __ ___   ___ _ __ | |_  |  _ \ ___  __ _  __| |_   _ 
 / _` |/ _ \ / __| | | | '_ ` _ \ / _ \ '_ \| __| | |_) / _ \/ _` |/ _` | | | |
| (_| | (_) | (__| |_| | | | | | |  __/ | | | |_ _|  _ <  __/ (_| | (_| | |_| |
 \__,_|\___/ \___|\__,_|_| |_| |_|\___|_| |_|\__(_)_| \_\___|\__,_|\__,_|\__, |
                                                                         |___/ 
*/


jQuery(document).ready(function(){

	//pngFix
	jQuery(document).pngFix();
	
	//Clear form fields once on click
	jQuery('input[type=text],input[type=password]').one("focus", function() {
		jQuery(this).val("");
	});

/*
 _____                            _                _       
|  ___|__  _ __ _   _ _ __ ___   | |    ___   __ _(_)_ __  
| |_ / _ \| '__| | | | '_ ` _ \  | |   / _ \ / _` | | '_ \ 
|  _| (_) | |  | |_| | | | | | | | |__| (_) | (_| | | | | |
|_|  \___/|_|   \__,_|_| |_| |_| |_____\___/ \__, |_|_| |_|
                                             |___/         
*/


	//User Forum Navigation
	
	jQuery.fn.fadeToggle = function(speed, easing, callback) {
		return this.animate({opacity: 'toggle'}, speed, easing, callback);
	}; 

	jQuery('#user_info p').click(function() {
		jQuery('#user_link_menucontent').fadeToggle();
	});
	
	jQuery("#user_link_menucontent li").hover(function () {
      jQuery(this).css({ backgroundColor:"#528F6C"});
      }, function () {
      jQuery(this).css({ backgroundColor:"#D5DDE5"});
      }
    );
    
    jQuery("#user_link_menucontent a").hover(function () {
          jQuery(this).css({ color:"#fff"});      
      }, function () {
      jQuery(this).css({ color:"#1D3652"});      
      }
    );

});