function image_slider2 (e) {
	
	// Settings
	var type = e.data.n;
	var current = $("div.detail img.active");
	var image = false;	
					
	
	if (type == "next") {
		image = $(current).parent ().next ();
		
		if (typeof (image.attr ("href")) == 'undefined') {
		
			image = $(current).parent ().parent ().children ("a:first-child");
		}
	}			
		
	if (type == "prev") {
		image = $(current).parent ().prev ();
		
		if (typeof (image.attr ("href")) == 'undefined') {
			
			image = $(current).parent ().parent ().children ("a:last-child");
		}	
	}
	
	if ((typeof ($(image).children ("img[rel!=\'control\']").attr ("src")) != 'undefined') && ($(image).children ("img[rel!=\'control\']").attr ("src") != $(current).attr("src"))) {
		
		$(image).children ("img").css ({display: "block"}).addClass ("active");
		
		
		$(current).removeClass ("active").css ({display: "none"});	
	}
}
