$(document).ready(function () {
    $(".testimonialrotator").testimonialrotator({
        settings_slideshowTime: 10
    });
    $('.slideshow').cycle({
        fx: 'fade',
        speed: 1000,
        timeout: 11000
    });
    tips = [];
    tips[0] = "It's hard to find a stylish man, but easy to create one";
    tips[1] = "Colour your world this season with contrasting block colours";
    tips[2] = "Forget about size, discover your body shape";
    tips[3] = "Life is for living, live it in style";
    tips[4] = "Experiment with vintage fashion this season";
    tips[5] = "Create your own unique style";
    tips[6] = "Investment dressing is investing in good quality pieces that you can wear for 2-3 years";
    tips[7] = "Fashion is only as good as it looks on you";
    tips[8] = "If you've got it- flaunt it, if you haven't-live with it";
    tips[9] = "You don't have to be rich and famous to have your own red carpet moment";
    tips[10] = "When you look in your wardrobe, you should love what you see";
    tips[11] = "A mans most important accessory, is the woman who walks beside him";
    tips[12] = "Accessories are a necessity and should be worn every day";
    tips[13] = "Never underestimate the importance of first impressions";
    tips[14] = "Update your image with a new hair style this season";
    index = Math.floor(Math.random() * tips.length);
    $(".tip-wrapper").html(tips[index]);
});	
