$(document).ready(function() {
			$('.file').hover(function() {
				$(this).addClass('hover');
			}, function() {
				$(this).removeClass('hover');
			});
			
			$('.file').click(function() {
				var linkHref = $(this).children('.file').children('a').attr("href");
				
				if(!linkHref){
					linkHref = $(this).children('a').attr("href");
				}
            
				window.location = linkHref;
			});
		});
