$(document).ready(function(){

	///////////////////////////////////////////////////////////////////////////////////
	//HOMEPAGE FEATURE CARSEOUL
	///////////////////////////////////////////////////////////////////////////////////
	
	$('.feature-content').cycle({
		fx: 'fade', 
			timeout: 10000, 
			delay:  -500,  
			pager: '#home-feat-nav',
			// callback fn that creates a thumbnail to use as pager anchor 
			pagerAnchorBuilder: function(idx, slide) { 
			//	<li class="fnav"><a>1</a></li>
			return '<a class="fnav" href="#">&bull;</a>'; 
		}
		});


	$('.carousel-cycle').cycle({
		fx: 'scrollHorz',
			timeout: 0,
			next:   '.next', 
		    prev:   '.prev',
			pager: '.carousel-nav',
			pagerAnchorBuilder: function(idx, slide) { 
			return '<a class="cNav" href="#">&bull;</a>'; 
		}
		});	
	
	$('.visit-img').cycle({
		fx: 'fade',
		timeout: 5000,
		random: 1
	});
	
	
	///////////////////////////////////////////////////////////////////////////////////
	//SELECT DROP-DOWN
	///////////////////////////////////////////////////////////////////////////////////
	function selectHref(evt, sel) {
		var select_num = sel.value;
		//console.log(evt.target[sel.value]);
		//console.log(sel);
		var href_loc = $(evt.target[sel.value]).attr('value');
		window.location = href_loc;
	}
	
	$('select#colleges').selectmenu({style: 'dropdown', maxHeight: 400, select: selectHref});
	$('select#research').selectmenu({style: 'dropdown', maxHeight: 400, select: selectHref});
	$('select#executiveLeadership').selectmenu({style: 'dropdown', maxHeight: 400, select: selectHref});
	$('select#degree').selectmenu({style: 'dropdown', maxHeight: 400, select: selectHref});
   });

