// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

var asics = new Object();

jQuery.fn.fadeToggle = function(){
    if(this.css("display") == 'none') {
        this.fadeIn()
    } else {
        this.fadeOut()
    }
}


