
$(window).ready(function(){
	$('#intro-text').jScrollPane({});	
	$participate = $('#participate-link');

	$scroller = $('.jspDrag');

	var partColor = '#FF0000';//'#C6010A';//'#FF0026';//'#FF2A00';//'#FF3838';//'#FF3333';// '#A80000';//'#F02311';//

	if( $('#not-front-page').length > 0) {
		$participate.css('display', 'none');
	}

	$('#intro-text-box').hover( function(){
		$participate.css('background-color', partColor); 
		$scroller.toggleClass('border-draw');
	}, function(){
		setTimeout("$participate.css('background-color', 'black')", 175);
		$scroller.toggleClass('border-draw');
	});

	$('#participate-link').hover( function(){
		$participate.css('background-color', partColor);
	}, function() {
		setTimeout("$participate.css('background-color', 'black')", 175);
	});

	$('#logo').click(function() { 
		window.location='/';				
	});

	$('#si_contact_name1').css('padding-right','7px');
	$('#si_contact_email1').css('padding-right','7px');

});

