
$(document).ready(function() {

    if ($.browser.msie && $('#site-content').height() < ($('#site-left-sidebar').height() -20))
    {
      $('#site-content').css( 'height', $('#site-left-sidebar').height() - 20);
    }
    $('#site-content').css( 'min-height', $('#site-left-sidebar').height() -20 );

    $('.sidebar-top div').corner("top 8px");
    $('.sidebar-bottom div').corner("bottom 8px");
    $('#site-content').corner();
    
    if (jQuery().tabs)
    {
        $('#detail-tabs').tabs()
    }
    
    var defaultSearch = $('#search_keywords').val();
    
    $('#search_keywords').focus( function() {
        if ($(this).val() == defaultSearch)
            $(this).val('')
    });
    
    $('#search_keywords').blur( function() {
        if ($.trim($(this).val()) == '' )
            $(this).val(defaultSearch);
    });
    
    $('.login-input').focus( function () {
        $(this).val('');
    });
    
    $(':radio, :checkbox').css('border', 'none');
    $(':radio, :checkbox').css('background', 'transparent');

//     $("#eshop-menu ul").treeview({
//         collapsed: true,
//         persist: "location"
//   });


});
