﻿$(document).ready(function () {

    $("a[rel='colorbox']").colorbox();

    $('#top-right-header').cycle({
        fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
    });

    $('#slider').cycle({
        // choose your transition type, ex: fade, scrollUp, shuffle, etc...
        fx: 'scrollHorz',
        delay: -100,
        prev:   '#prev1',
        next:   '#next1', 
        rev:    1 
       });

    $("a[rel='colorbox']").colorbox();

//    $('#nav-home').hover(function () {
//        var $this = $(this);
//        $this.data('bgimage', $this.css('background-image')).css('background-image', 'url(/Content/Images/home3.png)');
//    },
//    function () {
//        var $this = $(this);
//        $this.css('background-image', $this.data('bgimage'));
//    });
//    $('#nav-lube').hover(function () {
//        var $this = $(this);
//        $this.data('bgimage', $this.css('background-image')).css('background-image', 'url(/Content/Images/lubricants2.png)');
//    },
//    function () {
//        var $this = $(this);
//        $this.css('background-image', $this.data('bgimage'));
//    });

//    $('#nav-fuel').hover(function () {
//        var $this = $(this);
//        $this.data('bgimage', $this.css('background-image')).css('background-image', 'url(/Content/Images/fuel2.png)');
//    },
//    function () {
//        var $this = $(this);
//        $this.css('background-image', $this.data('bgimage'));
//    });

//    $('#nav-msds').hover(function () {
//        var $this = $(this);
//        $this.data('bgimage', $this.css('background-image')).css('background-image', 'url(/Content/Images/MSDS2.png)');
//    },
//    function () {
//        var $this = $(this);
//        $this.css('background-image', $this.data('bgimage'));
//    });

//    $('#nav-contact').hover(function () {
//        var $this = $(this);
//        $this.data('bgimage', $this.css('background-image')).css('background-image', 'url(/Content/Images/contact2.png)');
//    },
//    function () {
//        var $this = $(this);
//        $this.css('background-image', $this.data('bgimage'));
//    });

//    $('#nav-services').hover(function () {
//        var $this = $(this);
//        $this.data('bgimage', $this.css('background-image')).css('background-image', 'url(/Content/Images/services2.png)');
//    },
//    function () {
//        var $this = $(this);
//        $this.css('background-image', $this.data('bgimage'));
//    });

    $(function () {

        $("ul.dropdown li").hover(function () {

            $(this).addClass("hover");
            $('ul:first', this).css('visibility', 'visible');

        }, function () {

            $(this).removeClass("hover");
            $('ul:first', this).css('visibility', 'hidden');

        });

        $("ul.dropdown li ul li:has(ul)").find("a:first").append(" &raquo; ");

    });
});
