﻿
$(document).ready(function() {


    /*=========================
    ROUNDED CORNERS SCRIPT
    =======================  */
    DD_roundies.addRule('#footer', '4px', true);
    DD_roundies.addRule('#breadCrumbs ul', '0px 2px 2px 0px', true);
    DD_roundies.addRule('.roundTopHeader div', '3px 3px 0px 0px', true);
    DD_roundies.addRule('.roundTopHeader ul', '0px 0px 3px 3px', true);


    /*=========================
    SIDE NAV FLY OUT
    =======================  */
    $(".sideNavItem").hover(
        function() {
            $(this).addClass("popOut");
        },
	  function() {
	      $(this).removeClass("popOut");
	  }
	);

    $(".sideNavItem2").hover(
        function() {
            $(this).addClass("popOut2");
        },
	  function() {
	      $(this).removeClass("popOut2");
	  }
	);


    /*=========================
    STORES SHOW HIDE
    =======================  */
    $('#stores').find("h3").click(function() {
        $(this).parent().find("div").toggleClass("displayNone");
    });

    $('#stores').find("h3").hover(function() {
          $(this).css("background" , "#CCCCCC");
      },
      function() {
          $(this).css("background" , "#F0F0F0");
    });


    /*=========================
    SLIDER SHOPPER OTHERS
    =======================  */
    $("#slider").easySlider({
        prevId: 'prevBtn',
        prevText: 'Previous',
        nextId: 'nextBtn',
        nextText: 'Next',
        controlsShow: true,
        controlsBefore: '',
        controlsAfter: '',
        controlsFade: true,
        firstId: 'firstBtn',
        firstText: 'First',
        firstShow: false,
        lastId: 'lastBtn',
        lastText: 'Last',
        lastShow: false,
        vertical: false,
        speed: 400,
        auto: false,
        pause: 2000,
        continuous: false,
        numeric: true,
        numericId: 'controls'
    }); 
    /* ADDED PRINT BUTTON BEFORE PAGE NUMBERS */
    $('#controls1').before('<li id="print"><a href="#" onclick="print();" title="Imprimir">Imprimir</a></li>');


    $("#topAdvertising").easySlider({
        prevId: 'prevBtn',
        prevText: 'Previous',
        nextId: 'nextBtn',
        nextText: 'Next',
        controlsShow: false,
        controlsBefore: '',
        controlsAfter: '',
        controlsFade: true,
        firstId: 'firstBtn',
        firstText: 'First',
        firstShow: false,
        lastId: 'lastBtn',
        lastText: 'Last',
        lastShow: false,
        vertical: false,
        speed: 300,
        auto: true,
        pause: 11000,
        continuous: true,
        numeric: false,
        numericId: 'controls'
    });

    $("#midAdvertising").easySlider({
        prevId: 'prevBtn',
        prevText: 'Previous',
        nextId: 'nextBtn',
        nextText: 'Next',
        controlsShow: false,
        controlsBefore: '',
        controlsAfter: '',
        controlsFade: true,
        firstId: 'firstBtn',
        firstText: 'First',
        firstShow: false,
        lastId: 'lastBtn',
        lastText: 'Last',
        lastShow: false,
        vertical: false,
        speed: 300,
        auto: true,
        pause: 11000,
        continuous: true,
        numeric: false,
        numericId: 'controls'
    });

});