// function used to include js if needed
function include(filename)
{
	var head = document.getElementsByTagName('head')[0];
	
	script = document.createElement('script');
	script.src = filename;
	script.type = 'text/javascript';
	
	head.appendChild(script)
}
// close:include

include('http://webleveling.com/wl/wp-includes/js/jquery/jquery.corners.js');
