// image input rollover effects
$(document).ready(function() {
	$('.rollbtn').mouseover(function(){		
		this.src = this.src.replace(/(.*)(\.gif)/gi, '$1-over$2');
	})
	$('.rollbtn').mouseout(function(){
		this.src = this.src.replace(/(.*)(-over)(\.gif)/gi, '$1$3');
	})
});

//course tabs
$(document).ready(function(){
    if ($("#inner-right > ul#tab-buttons").length > 0) {
		var tabButtons = $("#inner-right > ul#tab-buttons li");
		tabButtons.each(function(i){
			var tabid = $("a", this).attr("href");
			if ($(tabid).length == 0){
				$(this).remove();
			}
		});
		//create tabs
		$("#inner-right > ul#tab-buttons").tabs();
	}
});

// style switcher
