﻿function toggle_visibility(id)
{
    var e = $('#' + id);
    if(e)
    {
		if (e.css('display') == 'none')
			e.show(500);
		else
			e.hide(500);
    }
}

$(function(){
	if ($.browser.msie)
	{
		$('.courseFinder select') 
			.bind('focus mouseover', function() { $(this).addClass('expand').removeClass('clicked'); }) 
			.bind('click', function() { $(this).toggleClass('clicked'); }) 
			.bind('mouseout', function() { if (!$(this).hasClass('clicked')) { $(this).removeClass('expand'); }}) 
			.bind('blur', function() { $(this).removeClass('expand clicked'); });
	}
});

