$(document).ready(function(){
    //LIGHTBOX
    $('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
    
    //NAVIGATION
    $("#dropdownMenu li").mouseover(function(){
        hoverit = $(this).attr('rel');
        $("ul[@rel="+hoverit+"]").css('display', 'block');
    });
    $("#dropdownMenu li").mouseout(function(){
        hoverit = $(this).attr('rel');
        $("ul[@rel="+hoverit+"]").css('display', 'none');
    });
    
    //SLIDEDOWN SLIDEUP
    $('a.toggler').click(function(){
         togglewhat = $(this).attr('rel');
         $("div.data[@id="+togglewhat+"]").slideToggle(400);
         return false;
    });
    
    //SPLASH EFFECT
    $('#splash_in').cycle({ 
        fx: 'fade',
    timeout:  7000 
    });
    $('#featured_imgs').cycle({
        fx: 'fade',
    timeout:  7000 
    });




    //SLIDE RG SPLASH on MENU MOUSEOVER
    $('li[@rel*=heating] a').mouseover(function(){
        $("#splash_in").cycle({
            autostop: 1,
            autostopCount: 1
        });
        $('#splash_in img').css('position', '').css('top', '').css('left','').css('display', 'inline').css('opacity', '1');
        $('#splash_in').animate({marginLeft: '0px'}, 1500);
        
        $("#featured_imgs").cycle({
            autostop: 1,
            autostopCount: 1 
        });
        $('#featured_imgs img').css('position', '').css('top', '').css('left','').css('display', 'inline').css('opacity', '1');
        $("#featured_imgs").animate({marginLeft: '0px'}, 1500);
    });
        
    
    
    
    
    $('li[@rel*=cooling] a').mouseover(function(){
        $("#splash_in").cycle({
            autostop: 1,
            autostopCount: 1
        });
        $('#splash_in img').css('position', '').css('top', '').css('left','').css('display', 'inline').css('opacity', '1');
        $('#splash_in').animate({marginLeft: '-861px'}, 1500);
        
        
        $("#featured_imgs").cycle({
            autostop: 1,
            autostopCount: 1 
        });
        $('#featured_imgs img').css('position', '').css('top', '').css('left','').css('display', 'inline').css('opacity', '1');
        $("#featured_imgs").animate({marginLeft: '-181px'}, 1500);
    });
    
    
    
    
    $('li[@rel*=drying] a').mouseover(function(){
        $("#splash_in").cycle({
            autostop: 1,
            autostopCount: 1
        });
        $('#splash_in img').css('position', '').css('top', '').css('left','').css('display', 'inline').css('opacity', '1');
        $('#splash_in').animate({marginLeft: '-1722px'}, 1500);
        
        
        $("#featured_imgs").cycle({
            autostop: 1,
            autostopCount: 1 
        });
        $('#featured_imgs img').css('position', '').css('top', '').css('left','').css('display', 'inline').css('opacity', '1');
        $("#featured_imgs").animate({marginLeft: '-362px'}, 1500);
    });

});