/***
* Main Javascript file
* @author Marius
**/
$(function(){
	$('.table').hover(function(){$(this).find('.actions').show();},function(){$(this).find('.actions').hide();});
	$('.delete').click(function(){ return confirm("Are you sure you want to delete it ? ");});
	$('#ssubmit').click(function(){
		var sw = $('#sw').val();
		
		if(sw.replace(/\s+/i, "").length <= 3){
			alert('You must enter at least 3 characters to be able to search our blogs');
			return false;
		}else{
			return true;
		}
	});
});

