$(document).ready( function() {
  
  var o = $("#logo-text-background");
      o.css( {height: o.parent().height(), width: o.parent().width(), opacity : 0.7} )

});




$(document).ready( function() {
  

	$("a").each( function() {

		if ( $(this).attr("target") == "" ) {
			
			if ( this.href.toLowerCase().indexOf("v2.ovcsupport.net") == -1 && this.href.toLowerCase().indexOf("www.ovcsupport.net") == -1 && this.href.toLowerCase().indexOf("javascript") == -1 ) {

				this.target = "_blank";

			}			

		}

	})


});


