// Initialize the Scripts for this site.

$(document).ready(function() {
  
    // Opens up certain links in new window:
    $('.lnkBlank').click(function() {
        window.open($(this).attr('href'), 'newWindow', '');
        return false;
    });

    cssBackgroundObj = {
    'background-image':  'none'
    }

    $('ul#Menu li:last a').css(cssBackgroundObj);
    $('ul#footLinks li:last a').css(cssBackgroundObj);
  
    $("#Menu a[href*='javascript']").css('cursor', 'default');
    $("#Menu a").each(function() {
      var href = $(this).attr('href');
      if ( href.indexOf('javascript') == -1 && href.indexOf('www.valentineventures.com') == -1 ) {
        href = 'http://www.valentineventures.com' + (href.substr(0, 1) == '/'? '': '/') + href;
        $(this).attr('href', href);
      }
    });
  
    // IE6 Detector plugin:
    $('body').ieDetector();
    
});
