
var j = jQuery.noConflict();
j(document).ready(function($){
	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'Association for Theatre in Higher Education',
        url: 'http://www.athe.org'
    });
    
    // Marketing Banner
    $('#banner ul').incMarketingBanner({
        showButtons: true,
        buttonText: {
           prevText: '',
           nextText: ''
        }
        
    }); 
    
    //Search Box Focus Fix Thingy
    $('form#cse-search-box #CSEtext').focus(function(){
    	$(this).addClass('focus');    
    });
    $('form#cse-search-box #CSEtext').blur(function(){
    	if($(this).attr('value') == ''){
    		$(this).removeClass('focus');
    		}//end if
    });
						   
});

