jQuery.noConflict();
jQuery(document).ready(function() {
//========================================================================================
//	QUANDO O BOTAO PARA AVANCAR FOR CLICADO
//========================================================================================


		jQuery('#sban').cycle({
			fx:    'scrollUp',
			speed:   200,
			pager:  '#nav',
			delay: -1000,
			timeout: 6000
		});		
		
		jQuery('img[@class=img_link]').livequery('click', function(){
						
			var id  = jQuery(this).attr('id');
			var src = jQuery('input[@class='+id+']').attr('value');
			var tar = jQuery('input[@class='+id+']').attr('fenster');
			
			if(src){
				
				if(tar == 'N'){
					
					window.open(src);
					
				}else{
					
					location.href = src; 
					
				}
				
			}
			
		});	

});