$(document).ready(function() {
	
	$('#content > div').jScrollPane({
		showArrows: true
	});
	
	$('#slide-arrows a').click(function(e){
		e.preventDefault();
		var className = $(this).attr('class');
		
		switch (className) {
			case 'up': $('.jspArrowUp').mousedown().mouseup();
				break;
			case 'down': $('.jspArrowDown').mousedown().mouseup();
				break;
		}
	});
	
	if ($('#content .jspPane').height() <= 261) {
		$('#slide-arrows').hide();
	}
	
});

// DD_belatedPNG fix for IE6 
/*@cc_on 
    if (@_jscript_version == 5.6 || (@_jscript_version == 5.7 && !window.XMLHttpRequest)) {
    	DD_belatedPNG.fix('.class-name, .another-class-name');
    }    
@*/
