
// define $j variable to avoid conflicts with other libraries...
var $j = jQuery.noConflict();

// start with jQuery magic when document is ready...
$j(document).ready(function() {
    
    
    //Configuration for image cycling...
    $j('#Splash').cycle(
                         {
                             speed: 4000
                          }
                        );// END image cycling
    
    // add css-class 'sideBarPic' to images in the sidebar
    //$j('#Secondarycontent img').attr('class', 'sideBarPic');
    
    // add css style "display: none;" to the career spans
    $j('#Career span').css('display', 'none');
    
    // Facebox call...
    $j('a[rel*=facebox]').facebox();
    
    // highlight searchtext on click to the input field...
    $j('#SearchForm_SearchForm_Search').focus(function() {
    
        $j(this).select();
                      
    });
	
});// END jQuery magic :-)
