$(document).ready(function() {	
	
	$('#image_rotate').innerfade({ 
		speed: 'slow', 
		timeout: 4000, 
		type: 'sequence',		
		containerheight: '400px',
		animationtype: 'fade'
	});
	$(".rollover").css({'opacity':'0'});
		$('.img_list li').hover(
			function() {
				$(this).find('.rollover').stop().fadeTo('normal', 1);
			},
			function() {
				$(this).find('.rollover').stop().fadeTo('normal', 0);
			}
		);
		$('.img_list_sub li').hover(
			function() {
				$(this).find('.rollover').stop().fadeTo('normal', 1);
			},
			function() {
				$(this).find('.rollover').stop().fadeTo('normal', 0);
			}
		);
	 
	 $('#icon1fade').css({'opacity':'0.5'});
	 $('#icon1fade').hover(
			function() {
				$(this).fadeTo('fast', 1);
			},
			function() {
				$(this).fadeTo('fast', 0.5);
			}
		); 
	 $('#icon2fade').css({'opacity':'0.5'});
	 $('#icon2fade').hover(
			function() {
				$(this).fadeTo('fast', 1);
			},
			function() {
				$(this).fadeTo('fast', 0.5);
			}
		); 
	 
	 
	$(".oferta_content").css({
	position: 'static'
	});
	$(".main").css({
	position: 'static'
	});
	$(".showcase").css({
	position: 'static'
	});
	$("#loading").hide();
	$(".showcase-thumbnail").css({ position: 'relative'});	
	
});

