function rotate_cover(selector){
	var css = {position:'absolute', top:30+'px', left:15+'px', opacity: '1', display:'block', visibility:'visible'};
	
	$(selector).each(function(){
		var alt = $(this).attr('alt');
		var title = $(this).attr('title');
		$(this).parent().find('br').remove();

		$(this).rotate(-12).css(css).attr('title', title).attr('alt', alt).show();

	})
};