$(document).ready(function(){
$(".five_pr_prnt").hover(function(){
$(this).find(".five_pr").slideToggle("fast");
$(this).find(".five_pr").toggleClass("five_pr_on");
$(".five_pr_prnt").mouseleave(function(){
$('.five_pr').animate({ opacity: "hide" }, "fast");
$('.five_pr').css({display:"none"});
});
});
});
$(document).ready(function(){
$("#br a").hover(function(){
$(this).animate({ color: "#ffcc00" }, "slow")
$("#br a").mouseout(function(){
$(this).animate({ color: "#1D6094" }, "slow")
});
});
});

/*-------*/
  $(document).ready(function(){
    var newText = $("h1").text().split(" ").join("</span> <span>");
    newText = "<span>" + newText + "</span>";
$("h1").html(newText)
 });

/*--------*/
$(document).ready(function(){
$("#br h1 span:first").addClass("blue-title");
$('#br h1 span:eq(1)').addClass("blue-title2"); 
$('#br h1 span:eq(2)').addClass("blue-title3");
});
