function cauta(){
	str = $("#search-box").val();
	if(str!='' && str!=' '){
		str = str.replace(/ /g,'+');
		document.location = '/video/cautare/'+str+'/';
	}else{
		alert('Scrie ceva in casuta de cautare');
	}
}
$(document).ready(function() {
	var options = {
        target:        '#newComm',   // target element(s) to be updated with server response
        beforeSubmit:function (formArray, jqForm){
			nume = $("#c_nume").val();
			email = $("#c_email").val();
			text = $("#c_text").val();
			if(!nume || !email || !text){
				alert('Trebuie sa completati toate campurile obligatorii');
				return false;
			}
		},
		clearForm: true,
		resetForm: true
    };
	$('#comment').ajaxForm(options);
	$("#reclama-sidebar").corner("round");
});