$(document).ready(
                function(){
                    	$('#innerfade').innerfade({
                    		animationtype: 'fade',
                    		speed: 1000,
                    		timeout: 7500, 
	                        type: 'sequence',
	                        containerheight: 	'350px',
	                        slide_timer_on: 	'yes',
	                        slide_ui_parent: 	'innerfade',
	                       	pause_button_id: 	'pause_button',
	                       	slide_nav_id:		'slide_nav'
                    	});
                    	 
                    	$.setOptionsButtonEvent();
                    
                        
                   		$("#pause_button").click(function() {
                   			$.pause();
                        });
                        $("#next_button").click(function() {
                    		$.next();
                        });
                        
                        $("#prev_button").click(function() {
                        	$.prev();
                        });
                        
                    	$("#first_button").click(function() {
                        	$.first();
                        });
                        
                    	$("#last_button").click(function() {
                        	$.last();
                        });
				
			});





