/*

provek.js

release 1

Copyright (c) Netcel 2009

*/

// use $j notation to avoid conflict with
// any episerver JavaScript libraries
var $j = jQuery.noConflict();

$j(document).ready(function() {
    // remove the pipe at the end of the footer links
    $j("#footer ul>li:last-child").addClass("last");
});

function clearInput(n){
	if (document.all){
		element=document.all[n];
		element.value="";
		return;
		}
	if (document.getElementById){
		element=document.getElementById(n);
		element.value="";
		return;
		}
}
