/* Script for removing last elements border and background image */
$(function(){
    $("").css("border","none");
    $("").css("background","none");
});

/* Script for Text/Search box focus and blur event */
$(".search_text_box").blur(function () {if(this.value == "") this.value = this.title;});
$(".search_text_box").focus(function () {if(this.value == this.title) this.value = "";});


$('.block_parent').each(function () {
    var child_elements=$(this).children('.block_child')
    var elements_height_array = [];
    child_elements.each(function(){
        elements_height_array.push($(this).height())
    });            
    child_elements.height($.protify(elements_height_array).max())
});

$("div#topmenu ul li").mouseover(function(){					   

$(this).addClass("active");
 });
 $("div#topmenu ul li").mouseout(function(){							   

$(this).removeClass("active");
 });
