$j(document).ready(
    function(){
                    	$j('ul#slider').innerfade({
                        speed: 1000,
                        timeout: 5000,
                        type: 'sequence',
                        containerheight: 	'450px',
                        slide_timer_on: 	'yes',
                        slide_ui_parent: 	'slider',
                        slide_ui_text:		'null',
                       	pause_button_id: 	'null',
                       	slide_nav_id:		'null'
                    	});
                    	$j.setOptionsButtonEvent();
                    	
                    	$j('#slider li').hover(function() {
                    	 $j(this).find('.bottom').fadeIn("slow");
                      },
                      function(){
                        $j(this).find('.bottom').fadeOut("slow");
                      });
                      $j('.bottom').css({'opacity' : 0.5})
});