overflow: hidden;
}
+ul#panes li.pane-inactive {
+ opacity: 0.3;
+}
+
ul#panes li.pane-r {
background: #4a0d0e;
background: rgba(74,13,14,0.75);
var left = current * 850;
$("#paneshow").animate({ left: "-" + left + "px" }, function(){
+ for(var p in panemap){
+ if(panemap[p] == current){
+ $("#pane-" + p).animate({ opacity: 1 });
+ } else {
+ $("#pane-" + p).animate({ opacity: 0.3 });
+ }
+ }
+
if(current > 0){
$("#arrow-l").fadeIn('slow');
} else {
for(var p in panemap){
- $(".link_" + p).click({pane: p}, function(ev){
+ $(".link_" + p).click({pane: p}, function(ev){
+ $(".pane").animate({ opacity: 0.3 });
current = panemap[ev.data.pane];
update_hmb();
this.blur();
$("#arrow-r").click(function(){
if((current + 1) < panes){
+ $(".pane").animate({ opacity: 0.3 });
$("#arrow-l").hide();
$("#arrow-r").fadeOut(function(){
++current;
$("#arrow-l").click(function(){
if(current > 0){
+ $(".pane").animate({ opacity: 0.3 });
$("#arrow-r").hide();
$("#arrow-l").fadeOut(function(){
--current;
/** 4a0d0e 0.75 **/
+ul#panes li.pane-inactive {
+ filter:alpha(opacity=30)
+}
+
ul#panes li.pane-r {
background: transparent;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#C04a0d0e,endColorstr=#C04a0d0e);