$(document).ready(function() {
    $("a[rel='productPic']").colorbox({transition:"fade"}); 
});

function findelement(id) {
   return document.all ? document.all(id) : document.getElementById ? document.getElementById(id) 	: null;
}
function resetField(field) {
    var text=findelement(field);
    text.value="";
}
function searchfieldValidate(field){
    var text=findelement(field);
    if (text.value == 'Írjon be keresőszavakat!'){
        text.value = "";
    }
    
}