$(document).ready(function(){
   $('.searchform .input').click(function(){
       var already = $(this).attr('clicked');
       if(!already)
        {
            $(this).val('');
            $(this).attr('clicked', '1')
        }
       
   });
   
   $('.leftBlock .choosen').mouseenter(function(){
      $(this).parent().find('.openable').show();
      $(this).parent().find('.openable').css('display', 'block');
   });
   
   $('.menuItem').mouseenter(function(){$(this).addClass('hover')}).mouseleave(function(){$(this).removeClass('hover')});

    sIFR.setup();
    sIFR.replaceElement("h1", named({sFlashSrc: baseUrl + "images/sifr_times_i.swf", sColor: "#000", 'sWmode': 'transparent'}))
    sIFR.replaceElement(".menu .active span", named({sFlashSrc: baseUrl + "images/sifr_times_i.swf", sColor: "#F6A71D", 'sWmode': 'transparent'}))
    $(".menu .active span").addClass('sIFR-replaced');
    sIFR.replaceElement(".menuItem span", named({sFlashSrc: baseUrl + "images/sifr_times_i.swf", sColor: "#000", 'sWmode': 'transparent'}))
    sIFR.replaceElement(".bottomBlocks h2", named({sFlashSrc: baseUrl + "images/sifr_times_i.swf", sColor: "#404040", 'sWmode': 'transparent'}))

    if($('#leftPane').length > 0)
        {
        if($('#leftPane').height() < ($('#content').height() + $('#banner').height()))
            {
            $('#leftPane').css({'min-height': $('#content').outerHeight() + $('#banner').outerHeight()});
            }
        }
});

