$(document).ready(function () {

    $(".nav-main li").hover(
		function () {
		    $(this).children('ul').show();
		},
		function () {
		    $(this).children('ul').hide();
		}
	);

    $("#tabs").tabs();

    $('.home-promo').prepend('<div class="home-promo-nav"><a id="prev" href="#"></a><a id="next" href="#"></a><div class="total"></div><div class="nav"></div></div>');

    $('.home-promo ul').cycle({
        prev: '#prev',
        next: '#next',
        timeout: 4000,
        speed: 500,
        pause: 'true',
        pager: '.nav'
    });

    var homepromocount = $(".home-promo ul li").length;
    $('.home-promo .total').text('of ' + homepromocount);

    $('.listings ul').equalHeights(true);
    $('.stockists ul').equalHeights(true);
    $('.listings-celeb ul').equalHeights(true);


    var signupbox = $(".signup .form-text");
    var commentbox = $(".comment .form-textarea");

    signupbox.focus(function () {
        if ($(this).attr("value") == "Email Address...") $(this).attr("value", "");
    });
    signupbox.blur(function () {
        if ($(this).attr("value") == "") $(this).attr("value", "Email Address...");
    });
    commentbox.focus(function () {
        if ($(this).text() == "Enter your comment here...") $(this).text("");
    });
    commentbox.blur(function () {
        if ($(this).text() == "") $(this).text("Enter your comment here...");
    });

    $('a[rel=external]').attr('target', '_blank');

    Shadowbox.init();
});

