﻿var j = jQuery.noConflict();

j(function(){
    j('#menu ul li div').hover(function(){
        j(this).parent().addClass('menu-bg');j(this).prev().addClass('anchor-text');}, function(){
        j(this).parent().removeClass('menu-bg');j(this).prev().removeClass('anchor-text');}
    );
    if(j('a.fancybox').exists())
    {
        styleTag = "<link rel=\"stylesheet\" type=\"text/css\" href=\"http://www.bmw.co.nz/css/fancy.css\" />";
        
        j('head').append(styleTag);   
           
        j('a.fancybox').fancybox({'overlayShow': true});
        
        j('.admin-options').css({"z-index": "89"});
    }
});
j.fn.exists = function() {
    return ( this.is('*') )
}