
Event.observe(window, 'load', function() { 
	/*For the slider control */
	
	if($('our_products_left_arrow')) {
		$('our_products_left_arrow').observe('click', function() {
			/* moves the images left */
			new Effect.Move('homepage_slider_inside', { x: -180, y: 0, transition: Effect.Transitions.sinoidal });
		});
	}
	
	if($('our_products_right_arrow')) {
		$('our_products_right_arrow').observe('click', function() {
			/* moves the images right */
			new Effect.Move('homepage_slider_inside', { x: 180, y: 0, transition: Effect.Transitions.sinoidal });
		});
	}
});

