jQuery(document).ready(function() {
	jQuery("div.baner").hide();
	jQuery("div.baner:first").show();
});

function change_background (id) {
	$(id).addClass("edit");
}

function change_background2 (id) {
	$(id).removeClass("edit");
}

function add_border (id) {
	$(id).addClass("edit_slideshow");
}

function add_border2 (id) {
	$(id).removeClass("edit_slideshow");
}

