

$(document).ready(function() {

	
$(".addinfo").hide();	
$(".additional").click(function() {
	$(this).toggleClass("expanded").next().slideToggle("slow");
	$(".addinfo").show();
	return false;
});

// hover stuff
    $('img.watch').hover(function () {
        this.src = '/templates/mirror/images/watch_hover.png';
    }, function () {
        this.src = '/templates/mirror/images/watch.png';
    });
    $('img.submit').hover(function () {
        this.src = '/templates/mirror/images/submit_hover.png';
    }, function () {
        this.src = '/templates/mirror/images/submit.png';
    });
    $('img.signup').hover(function () {
        this.src = '/templates/mirror/images/signup_hover.png';
    }, function () {
        this.src = '/templates/mirror/images/signup.png';
    });
    $('img.clickstart').hover(function () {
        this.src = '/templates/mirror/images/clickstart_hover.png';
    }, function () {
        this.src = '/templates/mirror/images/clickstart.png';
    });
    $('img.save').hover(function () {
        this.src = '/templates/mirror/images/save_hover.png';
    }, function () {
        this.src = '/templates/mirror/images/save.png';
    });
    $('img.unsubscribe').hover(function () {
        this.src = '/templates/mirror/images/unsubscribe_hover.png';
    }, function () {
        this.src = '/templates/mirror/images/unsubscribe.png';
    });
    $('img.subscribe').hover(function () {
        this.src = '/templates/mirror/images/subscribe_hover.png';
    }, function () {
        this.src = '/templates/mirror/images/subscribe.png';
    });
    $('img.pc').hover(function () {
        this.src = '/templates/mirror/images/pc_hover.png';
    }, function () {
        this.src = '/templates/mirror/images/pc.png';
    });
    $('img.remote').hover(function () {
        this.src = '/templates/mirror/images/remote_hover.png';
    }, function () {
        this.src = '/templates/mirror/images/remote.png';
    });
    $('img.upgrade_pro').hover(function () {
        this.src = '/templates/mirror/images/upgrade_pro_hover.png';
    }, function () {
        this.src = '/templates/mirror/images/upgrade_pro.png';
    });
    $('img.start_uploading').hover(function () {
        this.src = '/templates/mirror/images/start_uploading_hover.png';
    }, function () {
        this.src = '/templates/mirror/images/start_uploading.png';
    });
    $('img.life').hover(function () {
        this.src = '/templates/mirror/images/life_hover.png';
    }, function () {
        this.src = '/templates/mirror/images/life.png';
    });
    $('img.ghacks').hover(function () {
        this.src = '/templates/mirror/images/ghacks_hover.png';
    }, function () {
        this.src = '/templates/mirror/images/ghacks.png';
    });
    $('img.makeus').hover(function () {
        this.src = '/templates/mirror/images/makeus_hover.png';
    }, function () {
        this.src = '/templates/mirror/images/makeus.png';
    });
    $('img.crenk').hover(function () {
        this.src = '/templates/mirror/images/crenk_hover.png';
    }, function () {
        this.src = '/templates/mirror/images/crenk.png';
    });

});

