// JavaScript Document

	jQuery.noConflict(); 

	jQuery(document).ready(function(){

		// -----------------------------------------------------------------------------
		// Common

			//jQuery('a').attr('onfocus', 'blur();');


			
				
				actualImg = 0;
				jQuery('#imgSet img').eq(actualImg).fadeIn("slow");
				jQuery('#imgSet2 img').eq(actualImg).fadeIn("slow");
				
				jQuery('#next').click(function(){			
					if (actualImg+1 < jQuery('#imgSet img').size()) {
						jQuery('#imgSet img').fadeOut("slow");
						actualImg++;
						jQuery('#imgSet img').eq(actualImg).fadeIn("slow");
					}
					return false;
				});
				
				jQuery('#prev').click(function(){
					if (actualImg > 0) {
						jQuery('#imgSet img').fadeOut("slow");
						actualImg--;
						jQuery('#imgSet img').eq(actualImg).fadeIn("slow");
					}
					return false;
				});		
				

			


	


	});									
	
	
	
	