$(function(){
    
    $('.tab').click(function(){
        var thisTab = $(this).parent();
        var tabPosition = thisTab.css('right');
        
        if(tabPosition == '0px'){
            thisTab.animate({
            right: '-320'
            });
        }else{
            thisTab.animate({
            right: '0'
            });
        }
    });
    
    // Form content select & focus styles
    $('#fields_email, #fields_email2').focus(function() {
    	if (this.value == this.defaultValue) {
    		this.value = '';
    	}
    	if(this.value != this.defaultValue) {
    		this.select();
    	}
    });
    
    // Form content blur style
    $('#fields_email, #fields_email2').blur(function() {
    	if (this.value == ''){
    		this.value = (this.defaultValue);
    	}
    });
    
    //Toggles the content of press releases
    $('.show-handle').click(function(){
        var _this = $(this);
        
        _this.siblings('div.pr-overflow').toggle(300);
        if(_this.html() == 'Show Less'){
            _this.html('Show More');
        }else{
            _this.html('Show Less');
        }
    });
});
