$(document).ready(function(){
	if($('.drop').length > 0) {
		$('.drop').click(function() {
			$(this).next().toggleClass("course_lnks_act");
			return false;
		});
	}
	if($("#stu_where_hear").length > 0) {
		$("#stu_where_hear").change(function() {
			if($(this).val() == 9) {
				$("#stu_affiliate_div").show();
				return false;
			} else {
				$("#stu_affiliate_div").hide();
				return false;
			}
		});
		$("#stu_where_hear").change();
	}
	
	// ticker news
	if($('#ticker').length > 0) {
		$("#ticker").jStockTicker({
			interval: 30
		});
	}
	
	// cycle
/*
	if($("#ticker").length>0) {
		$('#ticker').cycle(
			{
			    fx:    'fade',
				sync:  false,
				speed: 0,
				cleartype: !$.support.opacity,  // true if clearType corrections should be applied (for IE) 
    			cleartypeNoBg:   true,
				timeout: 2000
			}
		);
	}
*/

	
});