$(document).ready(function() {
	$('#slidesContainer img').each(function(){
		var href_go = $(this).next('.text').find('a').attr('href');
		if(href_go !== undefined){
			$(this).css('cursor','pointer');
			$(this).click(function(){
				location.href = href_go;
			});
		}
	});
});
