function Detail(){
	
	var currentPos = 1;
	var bigImageLinks = new Array();
	
    this.init = function(){
    	(function($) {
    		$('#detail #bigImageHolder a');		
    	})(jQuery);
    }
	
    this.showBig = function(pos){
    	(function($) {
    		if(currentPos != pos) {
    			$($('#detail #bigImageHolder a')[currentPos - 1]).fadeOut();
    			$($('#detail #bigImageHolder a')[pos - 1]).fadeIn();
    			
    			currentPos = pos;
    		}
    	})(jQuery);
    }

    var self = this;
}

var detail = new Detail();

(function($) {
	$(document).ready(function(){
		detail.init();
	});

})(jQuery);
