$(document).ready(function() {
// Add In iFrame
	$("<iframe src=\"http://www.cactustefl.com/include/course_search_form_teachers.php?destination=&amp;type=&amp;filter=&amp;course_dates=\" frameborder=\"0\" scrolling=\"no\"></iframe>").prependTo("#sidebar");
// Google Analytics Tracking
	$.gaTracker('UA-3048277-8');
// Open External Links In New Window
	$('a[@rel*=external]').click(function() {
		this.target = "_blank";
	});
// Append & Prepend Colons/ Arrows
	$('#sidebar h2, #content h1, #content #course-skip li').prepend(":: ");
	$('#sidebar p').append(":");
	$('#highlight-1 a, #highlight-2 a, #highlight-3 a, #highlight-4 a, #highlight-5 a').append(" <span class=\"arrows\">>></span>");
// Telephone Animation
	$('#sidebar #telephone').mouseover(function() {
		$(this).css("background-position","left -100px");
	});
	$('#sidebar #telephone').mouseout(function() {
		$(this).css("background-position","left top");
	});
// Homepage Block Rollovers
	$('#highlight-1, #highlight-2, #highlight-3, #highlight-4, #highlight-5').mouseover(function() {
		$(this).css("background-position","right -82px");
		$(this).css("background-color","#EFEFEF");
	});
	$('#highlight-1, #highlight-2, #highlight-3, #highlight-4, #highlight-5').mouseout(function() {
		$(this).css("background-position","right top");
		$(this).css("background-color","#F2F2F2");
	});
// Contact Form Rollover
	$('#send').mouseover(function() {
		$(this).css("background","#309535");
		$(this).css("color","#FFFFFF");
	});
	$('#send').mouseout(function() {
		$(this).css("background","#FFFFFF");
		$(this).css("color","#096826");
	});
});