$(document).ready(
		function(){
						/////////////////////////
						// This is for the SLIDER
						/////////////////////////
						
                    	$('ul#showcase').innerfade({
                        speed: 1000,
                        timeout: 5000,
                        type: 'sequence',
                        containerheight: 	'290px',
                        slide_timer_on: 	'yes',
                        slide_ui_parent: 	'showcase',
                       	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();
                        });
						
						//////////////////////////
						// This is for the GALLERY
						//////////////////////////
						
						$("a.gallery").fancybox({
							'transitionIn'	:	'elastic',
							'transitionOut'	:	'fade',
							'speedIn'		:	300, 
							'speedOut'		:	200, 
							'titlePosition'  : 'over',
							'overlayShow'	:	false
							
						});
						
						$("a.flash").fancybox({
							'transitionIn'	:	'elastic',
							'transitionOut'	:	'fade',
							'speedIn'		:	300, 
							'speedOut'		:	200, 
							'width'        	:   660,
							'height'       	: 	518,
							'overlayShow'	:	false,
							
						});
						
						////////////////////////////////
						// This is for the PRESS section
						////////////////////////////////
						
						$("a.press").fancybox({
							'transitionIn'	:	'elastic',
							'transitionOut'	:	'fade',
							'speedIn'		:	300, 
							'speedOut'		:	200, 
							'titlePosition'  : 'inside',
							'overlayShow'	:	false
							
						});
				
		});


