function solveHeight(){
    /** content height resolve */
    var menu    = $('#menu').height();
    var content = $('#content').height();
    $('#content').height('auto');
    if ( menu > content ){
        $('#content').height(menu);
    }
}

$(document).ready(function(){
    /* form highlights */
    $('input[type=text], input[type=password]').bind('focus blur', function (){
        $(this).toggleClass('input_highlight');
        $(this).parents('.pair').find('.label').toggleClass('label_highlight');
    })

    /* submit button hover */
    $('input[type=submit]').live('hover', function(){$(this).css('cursor','pointer')})
    
    $(".category_select select").change(function(){
        var str = "";
        $(this).children("option:selected").each(function () {
              str += $(this).text() + " ";
            });
        $("#category_select").text(str);

    });
    
    $(".category_select select option").each(function(){
    	$(this).attr({title: $(this).text()})    	
    });
    
    $("#promo").cycle();

})

$(window).bind('load', function(){
    solveHeight();
})
