/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(document).ready(function () {
    if($('#slider').size()>0){
        $('#slider').anythingSlider({
           // startStopped    : true, // If autoPlay is on, this can force it to start stopped
            width           : 706,  // Override the default CSS width
            height          : 302,  // Override the default CSS heigth
            theme           : 'minimalist-round', // Theme name
            themeDirectory  : '/plugins/AnythingSlider/css/theme-minimalist-round.css',
            autoPlay        : true,
            delay           : 3000,
            startStopped    : false,
            animationTime   : 600,
            hashTags        : true,
            buildNavigation : false,
             buildArrows    : false,
            pauseOnHover    : true,
             enableNavigation    : false,
             toggleControls      : false
        });
    }
    $("a[rel^='prettyPhotoSimple']").prettyPhoto();
    if($('input[type=text][id="cantidad"]').size()>0){
        $('input[type=text][id="cantidad"]').numeric();
    }
});

