$(function() {
		   
	 $('.holder').hover(function() {
									  
		$(this).parent().addClass('selected');
	
	},
	function() {
		
		$(this).parent().removeClass('selected');
		
	});
	 
	$('.sub_menu').hover(function() {
								  
		$(this).parent().addClass('selected');
		
	},
	function() {
		
		$(this).parent().removeClass('selected');
		
	});
	
	$('#slider').cycle({
		fx:    'scrollHorz',
		timeout: 0,
		next: '.right',
		prev: '.left'
	});
	
	$('li.browse_link').hover(function() {
		$('.holder', $(this)).show();
		$('#pane1').jScrollPane({scrollbarWidth:20, scrollbarMargin:10});
	},
	function() {
		$('.holder', $(this)).hide();
	});
	
	$('li.last').hover(function() {
		$('.holder', $(this)).show();
		$('#pane2').jScrollPane({scrollbarWidth:20, scrollbarMargin:10});
	},
	function() {
		$('.holder', $(this)).hide();
	});
	
	
});
