if ( $.browser.webkit) {
	$(window).load(function() {	
		// vertical scroll	
		$('.scroll-pane').jScrollPane({
			showArrows:true,
			scrollbarWidth:19,
			dragMaxHeight:105
		});					   
	})
} else{
	$(document).ready(function() {	
		// vertical scroll	
		$('.scroll-pane').jScrollPane({
			showArrows:true,
			scrollbarWidth:19,
			dragMaxHeight:105
		});					   
	})
}


$(document).ready(function() {
							   
	//animate menu
	$('#menu li a').jrumble({
		rangeX: 2,
		rangeY: 2,
		rumbleSpeed: 50,
		rangeRot: 2
	});
	$('ul#menu').superfish({
      delay:       600,
      animation:   {height:'show'},
      speed:       400,
      autoArrows:  false,
      dropShadows: false
    });
	// for lightbox
	if ($("a[rel^='prettyPhoto']").length) {
			$(document).ready(function() {
				// prettyPhoto
				$("a[rel^='prettyPhoto']").prettyPhoto({theme:'dark_square'});
			});
	}	
	// close button animate
	$('.close').jrumble({
		rangeX: 2,
		rangeY: 2,
		posX: 'right',
		posY: 'top',
		rumbleSpeed: 50,
		rangeRot: 1
	});
	$('.close').css({opacity:'0'});
	// tool tip
	$('.normaltip').aToolTip({
    	toolTipClass: 'aToolTip'});
 });
