$(document).ready(function() {

    $('.theme_switch').click(function(obj){
        $.cookie('selected_theme', this.rel);
        $('body').attr('class', this.rel);
    });  
    
});